0%

清空文件的几种方法

重定向方式

1
2
3
4
5
6
# 1.
> test.txt
# 2.
: > test.txt
# 3.
true > test.txt

使用工具指令

1
2
3
4
5
6
7
8
9
10
# 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