标准输入与标准输出
輸入cat 命令時,他會從stdin(對通斷界面來說,標準輸入就是鍵盤)接受輸入,
cat < testfile ,現在cat命令會用testfile文件中的行為作為輸入,可以使用這種技術將數據輸入到任何能從stdin接受數據的shell命令
stdout 在終端界面上,標準輸出就是終端顯示器。
ls -l > test2 輸出
ls -l >> test2 追加
ls -l 2> error.log 重定向錯誤,只會把錯誤信息存入,正確的結果還會顯示在終端顯示器
ls -l hellokitty 2> testerr 1> result 錯誤和結果分開
ls -l hellokitty &> result 錯誤和結果在同一個文件但是位置變了,錯誤會集中在一起
轉載于:https://www.cnblogs.com/rocky-AGE-24/p/6952356.html
總結
- 上一篇: 搜索技术的历史
- 下一篇: Vijos——T 1082 丛林探险