首頁 返回 繼續 最後一頁 摘要 圖形
Redirection(一)
shell設定好三個標準的stream檔案:
- standard input:預設是鍵盤輸入
- standard output:預設是螢幕輸出
- standard error:預設是螢幕輸出
利用「>」或「>>」會將指令輸出轉向至一磁碟檔案,如: who > test1
- 「>」會覆蓋檔案、「>>」會附加檔案
- 用括號可以把多個指令的輸出redirection到同一個檔案:(ls -al ; who) > lsfile
利用「<」可以由檔案取得標準輸入