清空文件的几种方法 发表于 2021-03-09 阅读次数: 本文字数: 291 阅读时长 ≈ 1 分钟 重定向方式123456# 1.> test.txt# 2.: > test.txt# 3.true > test.txt 使用工具指令12345678910# 4.cat /dev/null > test.txt# 5.cp /dev/null test.txt# 6.dd if=/dev/null of=test.txt# 7.echo -n "" > test.txt # -n是为了是不显示空白行# 8.echo -n > test.txt