Linux下的几种清空文件的方法

Posted elder

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux下的几种清空文件的方法相关的知识,希望对你有一定的参考价值。

我们在使用Linux系统的时候,经常会要去把某些文件清零,如:某些log文件,以下介绍几种常用的Linux文件清零的方法:

 

1、使用重定向

[[email protected] ~]# du -h test.txt  # 查看文件大小
4.0K	test.txt
[[email protected] ~]# > test.txt 
[[email protected] ~]# du -h test.txt 
0	test.txt

 

2、使用命令truncate清空文件

[[email protected] ~]# du -h test.txt 
4.0K	test.txt
[[email protected] ~]# truncate --size 0 test.txt  # --size 用来设定文件大小 或者可以简写为 -s
[[email protected] ~]# du -h test.txt 
0	test.txt
[[email protected] ~]# 

 

3、使用echo命令来清空文件

[[email protected] ~]# du -h test.txt 
4.0K	test.txt
[[email protected] ~]# echo -n "" > test.txt  # -n 参数默认情况下会转换成"\n" 也就是回车符
[[email protected] ~]# du -h test.txt 
0	test.txt
[[email protected] ~]#

 

4、使用true命令清空文件

[[email protected] ~]# du -h test.txt 
4.0K	test.txt
[[email protected] ~]# true > test.txt 
[[email protected] ~]# du -h test.txt 
0	test.txt
[[email protected] ~]# 

 

5、使用/dev/null空设备来清空文件

[[email protected] ~]# du -h test.txt 
4.0K	test.txt
[[email protected] ~]# cat /dev/null > test.txt 
[[email protected] ~]# du -h test.txt 
0	test.txt
[[email protected] ~]#

 

 

 

 

以上是关于Linux下的几种清空文件的方法的主要内容,如果未能解决你的问题,请参考以下文章

linux中快速清空文件内容的几种方法

linux清空文件的几种常见方法

Linux清空文件的几种方法

将Linux文件清空的几种方法

将Linux文件清空的几种方法

linux快速清空文件 比如log日志