Linux中“>”和“>>”的區別

tslam發表於2024-07-03

> 覆蓋

root@xxxxxxxxx:/home# echo "world1" > 11.txt

>> 追加

root@xxxxxxxxx:/home# echo "world" >> 11.txt

相關文章