shell(3) 重新導向.doc

來源:互聯網
上載者:User



1)



重新導向錯誤:

> >>
不能重新導向
STDERR
,使用
2>
2>>
進行錯誤重新導向

 

2)



同時重新導向
STDOUT


STDERR

xxx 1>a.txt 2>a.txt


xxx
&>a.txt


xxx
>& a.txt

 

3)



重新導向到檔案描述符:

使用
&

>&n

eg: >&2
重新導向到
STDERR

 

4)



指令碼中永久重新導向:

exec
1>t.txt

exec
1>>t.txt        
#

追加需要使用
>>

exec
0<t.txt

重新導向符號兩側不要有空格

指令碼可同時開啟
9
個檔案描述符,可自訂的為
3

8

exec
3>t.txt

echo
"abc" >&3 #

輸出到
t.txt

 

5)



描述符的儲存與恢複:

exec 4>&1           
#
儲存
1

4

exec 1>a.txt   
      
#

1

echo "bbbb"          
#
將輸出到
a.txt

exec 1>&4           
#
恢複
1

echo "aaaa">&1    
#
將輸出到
STDOUT

 

類似地:

exec 4<&0           
#
儲存
0

4

exec 0<a.in           
#
重新導向輸入

exec 0<&4           
#
恢複
STDIN

 

6)



可讀可寫的檔案描述符:

exec 3<>a.txt 
      
#3
可同時用於輸入輸出

 

exec 3>&-     
      
#
關閉
3

 

eg:

exec 4>&1

echo "bbbb">&4   
#
將輸出到
STDOUT

exec 4>&-

echo "aaaa">&4    
#
將報錯

 

7)



對整個函數的輸出重新導向

可以直接在函數調用後加重新導向

 

8)



附錄:

lsof, view all fd in the linux system

lsof -p PID, view all fd of a PID

 

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

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.