Linux Learning _ Essay: Output redirection > Log, due to too much print content, no complete information is displayed on the Linux terminal

Source: Internet
Author: User

When debugging code, we often use the print statement to debug. Sometimes, however, there is no complete information on the Linux terminal due to the excessive amount of content being printed.

1, at this time we can use the command: ./test > Log or./test >> log

This will print all the correct information to the log, and the incorrect information will be printed to the terminal.

Annotations:

(1) > is directed output to a file, if the file does not exist, create a file, if the file exists, it is emptied; generally, when we back up the cleanup log file, it is this method: first back up the log, and then use ' > ', the log file is emptied (the file size becomes 0 bytes);


(2) >> This is to append the output to the destination file. If the file does not exist, the file is created, and if the file exists, the new content is appended to the end of the file, and the original content in the file is not affected.

Linux Learning _ Essay: Output redirection > Log, due to too much print content, no complete information is displayed on the Linux terminal

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.