> 輸出重定向 >> 輸出追加重定向 --------------------------------------------------------------------------------------------------------------------- echo hello A 將字符串hello A輸出到屏幕 --------------------------------------------------------------------------------------------------------------------- echo hello A > tmp.txt 將字符串輸出重定向,,當前目錄沒有tmp.txt,,則創(chuàng)建tmp.txt,并將字符串輸出到tmp.txt文件中 tmp.txt內容:hello A --------------------------------------------------------------------------------------------------------------------- echo hello B > tmp.txt 將字符串輸出重定向,, 當前目錄存在tmp.txt,,則將tmp.txt內容替換成輸出的字符串 tmp.txt內容:hello B --------------------------------------------------------------------------------------------------------------------- echo hello C >> tmp.txt 將字符串輸出追加重定向,當前目錄存在tmp.txt,,則將tmp.txt的內容后面追加輸出的字符串 tmp.txt內容:hello B hello C |
|