时间:2021-05-19
本文主要介绍的是Linux文件清空的五种方法,下面话不多说,来看看详细的介绍吧。
1、使用重定向的方法
[root@centos7 ~]# du -h test.txt 4.0K test.txt[root@centos7 ~]# > test.txt [root@centos7 ~]# du -h test.txt 0 test.txt2、使用true命令重定向清空文件
[root@centos7 ~]# du -h test.txt 4.0K test.txt[root@centos7 ~]# true > test.txt [root@centos7 ~]# du -h test.txt 0 test.txt3、使用cat/cp/dd命令及/dev/null设备来清空文件
[root@centos7 ~]# du -h test.txt 4.0K test.txt[root@centos7 ~]# cat /dev/null > test.txt [root@centos7 ~]# du -h test.txt test.txt###################################################[root@centos7 ~]# echo "Hello World" > test.txt [root@centos7 ~]# du -h test.txt 4.0K test.txt[root@centos7 ~]# cp /dev/null test.txt cp:是否覆盖"test.txt"? y[root@centos7 ~]# du -h test.txt test.txt##################################################[root@centos7 ~]# echo "Hello World" > test.txt [root@centos7 ~]# du -h test.txt 4.0K test.txt[root@centos7 ~]# dd if=/dev/null of=test.txt 记录了0+0 的读入记录了0+0 的写出0字节(0 B)已复制,0.000266781 秒,0.0 kB/秒[root@centos7 ~]# du -h test.txt test.txt4、使用echo命令清空文件
[root@centos7 ~]# echo "Hello World" > test.txt [root@centos7 ~]# du -h test.txt 4.0K test.txt[root@centos7 ~]# echo -n "" > test.txt ==>要加上"-n"参数,默认情况下会"\n",也就是回车符[root@centos7 ~]# du -h test.txt 0 test.txt5、使用truncate命令清空文件
[root@centos7 ~]# du -h test.txt 4.0K test.txt[root@centos7 ~]# truncate -s 0 test.txt -s参数用来设定文件的大小,清空文件,就设定为0;[root@centos7 ~]# du -h test.txt 0 test.txt总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作能带来一定的帮助,如果有疑问大家可以留言交流,谢谢大家对的支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
在java中有很多的方法可以创建文件写文件,你是否真的认真的总结过?下面笔者就帮大家总结一下java中创建文件的五种方法。Files.newBufferedWr
本文实例总结了php实现四舍五入的方法。分享给大家供大家参考。具体分析如下:php实现四舍五入的三种方法,分别通过number_format函数、round函数
今天在分析mysql的慢查询,发现文件太大了,分析必然会占用太多的io,所以就需要先清空慢查询文件,借此机会分享一下linux/unix下清空文件的方法:使用/
分享下php读取文件内容的五种方法:好吧,写完后发现文件全部没有关闭。实际应用当中,请注意关闭fclose($fp); php读取文件内容:-----第一
本文实例讲述了JavaScript清空数组元素的两种方法简单比较。分享给大家供大家参考。具体分析如下:JavaScript中数组清空有多种方法:vararr=[