首先是輸入:stdin輸入能夠從鍵盤,也能夠從文件獲得html
命令執行完成:把成功結果輸出到屏幕,stout默認是屏幕this
命令執行有錯誤:把錯誤也輸出到屏幕上面,stderr默認也是屏幕spa
標準輸入stdin:對應的文件描述符是0,符號是<和<<,/dev/stdin -> /proc/self/fd/03d
標準輸出stdout:對應的文件描述符是1,符號是>和>>,/dev/stdout -> /proc/self/fd/1code
標準錯誤stderr:對應的文件描述符是2,符號是2>和2>>,/dev/stderr -> /proc/self/fd/2htm
#默認狀況下,stdout和stderr默認輸出到屏幕 [root@st ~]# ls ks.cfg wrongfile ls: cannot access wrongfile: No such file or directory ks.cfg #標準輸出重定向到stdout.txt文件中,錯誤輸出默認到屏幕。1>與>等價 [root@st ~]# ls ks.cfg wrongfile >stdout.txt ls: cannot access wrongfile: No such file or directory [root@st ~]# cat stdout.txt ks.cfg #標準輸出重定向到stdout.txt,錯誤輸出到err.txt。也可使用追加>>模式。 [root@st ~]# ls ks.cfg wrongfile >stdout.txt 2>err.txt [root@st ~]# cat stdout.txt err.txt ks.cfg ls: cannot access wrongfile: No such file or directory #將錯誤輸出關閉,輸出到null。一樣也能夠將stdout重定向到null或關閉 # &1表明標準輸出,&2表明標準錯誤,&-表明關閉與它綁定的描述符
[root@st ~]# ls ks.cfg wrongfile 2>&- ks.cfg [root@st ~]# ls ks.cfg wrongfile 2>/dev/null ks.cfg #將錯誤輸出傳遞給stdout,而後stdout重定向給xx.txt,也能夠重定向給null。順序爲stderr的內容先到xx.txt,stdout後到。 [root@st ~]# ls ks.cfg wrongfile >xx.txt 2>&1 #將stdout和stderr重定向到null [root@st ~]# ls ks.cfg wrongfile &>/dev/null
#從stdin(鍵盤)獲取數據,而後輸出到catfile文件,按Ctrl+d結束 [root@st ~]# cat >catfile this is catfile [root@st ~]# cat catfile this is catfile #輸入特定字符eof,自動結束stdin [root@st ~]# cat >catfile <<eof > this > is > catfile > eof [root@st ~]# cat catfile this is catfile
參考:http://www.cnblogs.com/chengmo/archive/2010/10/20/1855805.htmlblog