What is the difference between Linux output redirection > and >>?

Source: Internet
Author: User

"Introduction to the difference between:> and >>"
    1. 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 ' > ' to empty the log file (file size to 0 bytes); >> 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.

      END
"Step one:> and >> can create a new file"
    1. 1

      When the file does not exist, using > and >> are the same, new files are created.

      There are no test1 and test2, and new Test1 and Test2 are created by > and >> respectively.

      Echo is the instruction of the output, enclosed in double quotation marks.

      Specific as

      END
"Step two:> overwrite content,>> append content"
    1. 1

      Use > to overwrite the contents of the Test1 file, test1 the original content will be emptied, the new content will be added, such as

    2. 2

      Use > to empty the contents of the Test1 file, as

    3. 3

      Use >> to append content to test2 file, test2 original content will be retained, new content will be added to the end, such as

What is the difference between Linux output redirection > and >>?

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.