How to Use the Stdin, Stderr, and Stdout Streams in Bash
How to Use the Stdin, Stderr, and Stdout Streams in Bash
目錄
原文
引言
Redirection Operators of Stdin, Stdout, and Stderr
Uses of Stdin, Stdout, and Stderr
Example 1: Use of Stdin
>、>>、< 等操作符使用
Example 2: Use of Stdout
pipe (|) 管道符和stdout
Example 3: Use of Stdin and Stdout
Example 4: Use of Stderr
原文
How to Use the Stdin, Stderr, and Stdout Streams in Bash – Linux Consultant[1]
引言
當Linux操作系統(tǒng)啟動時,將會有三個流被打開。它們是stdin、stdout和stderr。
stdin 的全稱是標準輸入,用于接受用戶的輸入。
stdout 的完整形式是標準輸出,用于將命令的輸出存儲到stdout流中。
stderr 的完整形式是標準錯誤,用于將任何命令產(chǎn)生的錯誤信息存儲到數(shù)據(jù)流中。
stdin、stdout 和 stderr 的相應數(shù)字標識符值為0、1和2。
Redirection Operators of Stdin, Stdout, and Stderr
Stdin、Stdout和Stderr的重定向操作符
重定向符號使用:
"<" 或 ?"0<"用于stdin流。
">" 或 "1>"用于stdout流。
"2"用于stderr流。
Uses of Stdin, Stdout, and Stderr
下面是一些使用stdin,stdout,stderr的使用案例。
取出文件的內(nèi)容并在終端打印的方法在這個例子中顯示。
Example 1: Use of Stdin
>、>>、< 等操作符使用
運行下面的 "cat "命令,創(chuàng)建一個名為testdata.txt的帶有一些內(nèi)容的文本文件。
$?cat?>?testdata.txt
注意輸入上面的命令之后,此時shell會等待輸入流進行輸入,此時可以再控制臺隨意輸入一些字符,之后按鍵ctrl + c**的方式結束輸入,此時ls
當前可以看到會出現(xiàn)新文件 testdata.txt。
注意如果我們重復執(zhí)行此命令,那么每次新的輸入都會 覆蓋掉舊的輸入。
ubuntu@VM-8-8-ubuntu:~$?cat?>?testdata.txt
abcdefg
^C
ubuntu@VM-8-8-ubuntu:~$?cat?testdata.txt?
abcdefg
運行下面的 "cat "命令,將一些內(nèi)容追加到testdata.txt文件中。
$?cat?>>?testdata.txt
下面是實踐代碼:
ubuntu@VM-8-8-ubuntu:~$?cat?testdata.txt?
abcdefg
ubuntu@VM-8-8-ubuntu:~$?cat?>>?testdata.txt
hijklmn
^C
ubuntu@VM-8-8-ubuntu:~$?cat?testdata.txt?
abcdefg
hijklmn
運行下面的 "cat "命令,從testdata.txt文件中獲取一個輸入流,并將其打印到終端。
$?cat?<?testdata.txt
從表面效果上來看此命令實際上只是執(zhí)行了<
符號前面的命令而已。但是在后續(xù)的案例中,將會介紹如何讀入輸入流重定向到另一個輸出流:
ubuntu@VM-8-8-ubuntu:~$?ls?<?testdata.txt?
testdata2.txt??testdata.txt
ubuntu@VM-8-8-ubuntu:~$?ls?-l?<?testdata.txt?
total?8
-rw-rw-r--?1?ubuntu?ubuntu?23?Mar?14?13:06?testdata2.txt
-rw-rw-r--?1?ubuntu?ubuntu?16?Mar?14?13:13?testdata.txt
Output:
The following output appears after executing the previous commands after adding the string, “linuxhint.com[2]”, and “Scripting Language” into the testdata.txt file:
輸出:
在英文原文的案例中,在testdata.txt文件中加入 "linuxhint.com[3] "和 "腳本語言 "這兩個字符串后,執(zhí)行前面的命令會出現(xiàn)以下輸出。

The method of creating a file using pipe (|) and redirection operator is shown in this example.
除了上面幾種方法外,還可以使用管道(|)和重定向操作符創(chuàng)建文件。
Example 2: Use of Stdout
pipe (|) 管道符和stdout
下面是一個使用管道符重定向輸出并且創(chuàng)建文件的例子。
Run the following command to write a string data into the text file named testdata2.txt by piping. The output of the “echo” command is sent to the input of the “cat” command using the pipe (|) operator:
通過下面的命令,把echo的命令發(fā)送到cat當中,最后重定向輸出流到文件testdata2.txt。
ubuntu@VM-8-8-ubuntu:~$?echo?"Learn?Bash?Programming"?|?cat?>?testdata2.txt
ubuntu@VM-8-8-ubuntu:~$?ls
testdata2.txt
Run the following “cat” command to check the content of the testdata2.txt file:
再次運行 "cat "命令檢查testdata2.txt文件的內(nèi)容。
ubuntu@VM-8-8-ubuntu:~$?cat?testdata2.txt?
Learn?Bash?Programming
Output:
The following output appears after executing the previous commands. According to the output, the output of the “echo” command is written into the testdata2.txt file:
輸出:
下面的例子可以可以看到echo的輸出內(nèi)容被重定向寫入到testdata2.txt 這個文件當中,下面是合并兩個命令的輸出結果:
ubuntu@VM-8-8-ubuntu:~$?echo?"Learn?Bash?Programming"?|?cat?>?testdata2.txt
ubuntu@VM-8-8-ubuntu:~$?ls
testdata2.txt
ubuntu@VM-8-8-ubuntu:~$?cat?testdata2.txt?
Learn?Bash?Programming
Run the following command to write the output of the “l(fā)s –l” command into a text file named list.txt using the redirection operator (‘>’):
運行以下命令,使用重定向操作符('>
')將 ls -l
命令的輸出寫入一個名為list.txt的文本文件中。
ls?-l??>?list.txt
個人的實驗結果如下:
ubuntu@VM-8-8-ubuntu:~$?ls?-l??>?list.txt
ubuntu@VM-8-8-ubuntu:~$?cat?list.txt?
total?8
-rw-rw-r--?1?ubuntu?ubuntu??0?Mar?14?13:18?list2.txt
-rw-rw-r--?1?ubuntu?ubuntu??0?Mar?14?13:22?list.txt
-rw-rw-r--?1?ubuntu?ubuntu?23?Mar?14?13:06?testdata2.txt
-rw-rw-r--?1?ubuntu?ubuntu?16?Mar?14?13:13?testdata.txt
Example 3: Use of Stdin and Stdout
The method of using both stdin and stdout to take an input from a file and write it into a file is shown in this example.
這部分介紹了如何同時使用stdin和stdout。
Run the following “cat” command to take the content of the testdata.txt file and write it into the testfile.txt file and the terminal:
下面的cat命令可以把testdata.txt文件的內(nèi)容打印到控制臺,同時重定向輸出流寫入文件到另一個文件:
ubuntu@VM-8-8-ubuntu:~$?cat?<?testdata.txt?>?otherfile.txt
ubuntu@VM-8-8-ubuntu:~$?cat?testdata.txt?
abcdefg
hijklmn
ubuntu@VM-8-8-ubuntu:~$?cat?otherfile.txt?
abcdefg
hijklmn
PS:為了方便理解,建議讀者把上面的命令分為兩個操作,類似這樣的寫法:
( cat < testdata.txt ) > otherfile.txt
。
上面的命令可以看作兩個部分,第一部分是讀取testdata.txt的內(nèi)容作為輸入流,然后輸出再輸出到 otherfile.txt。最終兩個文件內(nèi)容是一樣的,這個操作的命令效果和CP復制一個文件的效果類似:
ubuntu@VM-8-8-ubuntu:~$?cp?otherfile.txt?otherfile2.txt
Example 4: Use of Stderr
The content of the standard error can be printed in the terminal or redirected into a file or sent to the /dev/null that works like the recycle bin. The different ways to pass the standard error are shown in this example
stderr是標準錯誤信息,通常的做法是輸出到控制臺或者輸出到文件,還有一種方式是丟棄到**/dev/null**這個“黑洞”當中,下面的例子是stderr的用法案例:
下面的命令是正確的,它用換行符打印了 "Hello "字符串。所以下面的命令沒有產(chǎn)生標準錯誤。
ubuntu@VM-8-8-ubuntu:~$?printf?"%s\n"?"Hello"
Hello
我們可以通過 echo $?
的方式,檢查上一個命令是否正確:
ubuntu@VM-8-8-ubuntu:~$?echo?$?
0
下面的命令是錯誤的,因為沒有名為 "pirntf
"的命令。所以它產(chǎn)生了一個標準錯誤,并且錯誤被打印控制臺。
ubuntu@VM-8-8-ubuntu:~$?pirntf?"%s\n"?"Hello"
Command?'pirntf'?not?found,?did?you?mean:
??command?'printf'?from?deb?coreutils?(8.32-4.1ubuntu1)
Try:?sudo?apt?install?<deb?name>
這時候檢查上一個命令是否正確會,結果返回一個非0值代表上一條命令有誤:
ubuntu@VM-8-8-ubuntu:~$?echo?$?
127
Sometimes, it requires printing the custom error by hiding the standard error to make the error more understandable for the users. This task can be done by redirecting the error into the /dev/null. The “2>” is used here to redirect the error into /dev/null.
有時,控制臺需要通過隱藏標準錯誤來打印自定義錯誤,使用戶更容易理解錯誤,這個任務可以通過將錯誤重定向到/dev/null
中來完成。這里使用 "2>
"來重定向錯誤到/dev/null
。
ubuntu@VM-8-8-ubuntu:~$?pirntf?"%s\n"?"Hello"?2>?/dev/null
ubuntu@VM-8-8-ubuntu:~$?echo?$?
127
Sometimes, the standard error requires storing into a file for future use. This task can be done by redirecting the error into a file using the “2>” operator.
有時,標準錯誤需要存儲到一個文件中提供給以后使用(日志備份)。這項任務同樣可以通過使用 "2>"操作符將錯誤重定向到一個文件中來完成。
ubuntu@VM-8-8-ubuntu:~$?pirntf?"%s\n"?"Hello"?2>?error.txt
ubuntu@VM-8-8-ubuntu:~$?cat?error.txt?
Command?'pirntf'?not?found,?did?you?mean:
??command?'printf'?from?deb?coreutils?(8.32-4.1ubuntu1)
Try:?sudo?apt?install?<deb?name>
從結果可以看到在執(zhí)行命令后標準錯誤被正確寫入error.txt文件。
總結
The uses of stdin, stdout, and stderr are explained in this tutorial using multiple examples that will help the Linux users to understand the concept of these streams and use them properly when required.
本教程用多個例子解釋了stdin、stdout和stderr的用途,這將有助于Linux用戶理解這些流的概念,并在需要時正確使用它們。
參考資料
[1]
How to Use the Stdin, Stderr, and Stdout Streams in Bash – Linux Consultant: https://www.linuxconsultant.org/how-to-use-the-stdin-stderr-and-stdout-streams-in-bash/
[2]linuxhint.com: http://linuxhint.com
[3]linuxhint.com: http://linuxhint.com