我们在使用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] ~]#
原文地址:https://www.cnblogs.com/telder/p/9023324.html
时间: 2024-10-11 20:42:47