A detailed description of Linux standard input and output

Source: Internet
Author: User

Standard input and output:

A file descriptor is a simple positive integer that identifies each file and socket that is opened by the process. The first three file descriptors (0,1,2) correspond to standard input (stdin), standard output (stdout), and standard error (STDERR), respectively.

0 indicates standard input
1 indicates standard output
2 indicates standard error output

> default to standard output redirect, same as 1>

2>&1 means redirecting the standard error output to the standard output .

&>file means that both the standard output and the standard error output are redirected to the file .

2>&1 > File directs error to standard output (at this point the standard output is the terminal , so output to the terminal), the standard output is positioned to the file

> File 2>&1 to the standard output to the files, error output to the standard output (at this point the standard output point to the file, so output to a file)

For example:

[[email protected] ~]# cat tt.txtcat:tt.txt:No such file or Directory[[email protected] ~]# cat Tt.txt &>err.txt[ [email protected] ~]# cat err.txt cat:tt.txt:No such file or Directory[[email protected] ~]#


This article is from the "10628473" blog, please be sure to keep this source http://10638473.blog.51cto.com/10628473/1745568

A detailed description of Linux standard input and output

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.