linux常用命令-- 重定向 2018-01-10 本文已影响0人 timma_wang >:重定向覆盖掉原来内容 ls -alh > test.txt >>:重定向不覆盖原来内容(在原来内容上进行追加) ls -l >> test.txt