“echo >”和“echo >>”的區別
> 輸出重定向
>> 輸出追加重定向
---------------------------------------------------------------------------------------------------------------------
echo hello A
將字串hello A輸出到螢幕
---------------------------------------------------------------------------------------------------------------------
echo hello A > tmp.txt
將字串輸出重定向,當前目錄沒有tmp.txt,則建立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