shell管道和輸入輸出重定向

輸出重定向:使用 > 重定向 #重定向輸出到文件,默認會覆蓋文件內容 ls -l > output.txt #使用 >> 重定向追加到文件末尾 ls -l >> output.txt #使用 0>、1>、2> 指定重定向的標準輸入、輸出和錯誤流,相似的還有 0>>、1>>、2>> ls -l 1> out.txt #將輸出重定向到不一樣文件 kill -9 1234 >killout.txt 2>
相關文章
相關標籤/搜索