經常可以在一些指令碼,尤其是在crontab呼叫時發現如下形式的命令呼叫
/tmp/test.sh > /tmp/test.log 2>&1
前半部分/tmp/test.sh > /tmp/test.log很容易理解,那麼後面的2>&1是怎麼回事呢?
要解釋這個問題,還是得提到檔案重定向。我們知道》和《是檔案重定向符。那麼1和2是什麼?在shell中,每個程序都和三個系統檔案相關聯:標準輸入stdin,標準輸出stdout和標準錯誤stderr,三個系統檔案的檔案描述符分別為0,1和2。所以這裡2>&1 的意思就是將標準錯誤也輸出到標準輸出當中。
下面通過乙個例子來展示2>&1有什麼作用:
$ cat test.sh
t
date
test.sh中包含兩個命令,其中t是乙個不存在的命令,執行會報錯,預設情況下,錯誤會輸出到stderr。date則能正確執行,並且輸出時間資訊,預設輸出到stdout
./test.sh > test1.log
./test.sh: line 1: t: command not found
$ cat test1.log
tue oct 9 20:51:50 cst 2007
可以看到,date的執行結果被重定向到log檔案中了,而t無法執行的錯誤則只列印在螢幕上。
$ ./test.sh > test2.log 2>&1
$ cat test2.log
./test.sh: line 1: t: command not found
tue oct 9 20:53:44 cst 2007
這次,stderr和stdout的內容都被重定向到log檔案中了。
實際上,> 就相當於 1> 也就是重定向標準輸出,不包括標準錯誤。通過2>&1,就將標準錯誤重定向到標準輸出了,那麼再使用》重定向就會將標準輸出和標準錯誤資訊一同重定向了。如果只想重定向標準錯誤到檔案中,則可以使用2> file。
有了這些認識才能理解 "1>&2" 和 "2>&1".
1>&2 正確返回值傳遞給2輸出通道 &2表示2輸出通道
如果此處錯寫成 1>2, 就表示把1輸出重定向到檔案2中.
2>&1 錯誤返回值傳遞給1輸出通道, 同樣&1表示1輸出通道.
shell 程式設計之2 1
經常可以在一些指令碼,尤其是在crontab呼叫時發現如下形式的命令呼叫 tmp test.sh tmp test.log 2 1 前半部分 tmp test.sh tmp test.log很容易理解,那麼後面的2 1是怎麼回事呢?要解釋這個問題,還是得提到檔案重定向。我們知道 和 是檔案重定向符。...
shell程式設計之chown
語法 chown option owner group file chown option reference rfile file 描述 chown 改變指定檔案的使用者和 或組的擁有者。例如 liujl liujl rev 1 0 mycode test ls l 總用量 0 rw rw r 1...
shell 程式設計之echo
echo it is a test echo itis a testecho it is a test read 命令從標準輸入中讀取一行,並把輸入行的每個欄位的值指定給 shell 變數 bin sh read name echo name it is a test 以上 儲存為 test.sh,...