Shell執(zhí)行腳本并輸出日志文件
shell 錯(cuò)誤輸出重定向到標(biāo)準(zhǔn)輸出./tmp/test.sh > /tmp/test.log 2>&1
>
和<
是文件重定向符。那么1和2是什么?
shell中每個(gè)進(jìn)程都和三個(gè)系統(tǒng)文件相關(guān)聯(lián)
標(biāo)準(zhǔn)輸入stdin
標(biāo)準(zhǔn)輸出stdout
標(biāo)準(zhǔn)錯(cuò)誤stderr
三個(gè)系統(tǒng)文件的文件描述符分別為0
,1
和2
。
所以這里2>&1
的意思就是將標(biāo)準(zhǔn)錯(cuò)誤也輸出到標(biāo)準(zhǔn)輸出當(dāng)中。
下面通過一個(gè)例子來展示2>&1
有什么作用:
$ cat test.sh
t
date
test.sh中包含兩個(gè)命令,其中t是一個(gè)不存在的命令,執(zhí)行會報(bào)錯(cuò),默認(rèn)情況下,錯(cuò)誤會輸出到stderr。date則能正確執(zhí)行,并且輸出時(shí)間信息,默認(rèn)輸出到stdout。
標(biāo)準(zhǔn)輸出重定向到log文件中,標(biāo)準(zhǔn)錯(cuò)誤打印在屏幕上
./test.sh > test1.log/test.sh: line 1: t: command not found
$ cat test1.log
Tue Oct 9 20:51:50 CST 2007
可以看到,date的執(zhí)行結(jié)果被重定向到log文件中了,而t無法執(zhí)行的錯(cuò)誤則只打印在屏幕上。
標(biāo)準(zhǔn)輸處和標(biāo)準(zhǔn)錯(cuò)誤重定向到同一log文件中
$ ./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的內(nèi)容都被重定向到log文件中了。
實(shí)際上,?>
就相當(dāng)于1>
也就是重定向標(biāo)準(zhǔn)輸出,不包括標(biāo)準(zhǔn)錯(cuò)誤。通過2>&1
,就將標(biāo)準(zhǔn)錯(cuò)誤重定向到標(biāo)準(zhǔn)輸出了(stderr已作為stdout的副本),那么再使用>重定向就會將標(biāo)準(zhǔn)輸出和標(biāo)準(zhǔn)錯(cuò)誤信息一同重定向了。
標(biāo)準(zhǔn)輸處和標(biāo)準(zhǔn)錯(cuò)誤重定向到不同log文件中
如果只想重定向標(biāo)準(zhǔn)錯(cuò)誤到文件中,則可以使用2> file
。
1 sh mr_add_test.sh 1>log.log 2>log_err.log
原文鏈接:https://www.dianjilingqu.com/759233.html