中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Linux怎么清空文件內容

發布時間:2022-01-27 15:59:07 來源:億速云 閱讀:144 作者:iii 欄目:開發技術

這篇文章主要講解了“Linux怎么清空文件內容”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“Linux怎么清空文件內容”吧!

Linux怎么清空文件內容

1、使用重定向的方法

 [root@centos7 ~]# du -h test.txt
 
 4.0K    test.txt
 
 [root@centos7 ~]# > test.txt
 
 [root@centos7 ~]# du -h test.txt
 
 0    test.txt

2、使用true命令重定向清空文件

 [root@centos7 ~]# du -h test.txt
 
 4.0K    test.txt
 
 [root@centos7 ~]# true > test.txt
 
 [root@centos7 ~]# du -h test.txt
 
 0    test.txt

3、使用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
 
 0    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
 
 0    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
 
 0    test.txt

4、使用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.txt

5、使用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

感謝各位的閱讀,以上就是“Linux怎么清空文件內容”的內容了,經過本文的學習后,相信大家對Linux怎么清空文件內容這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

汉源县| 澎湖县| 浮山县| 平乡县| 三都| 高阳县| 延川县| 博白县| 义乌市| 苏尼特右旗| 柘荣县| 吉木萨尔县| 承德市| 曲阜市| 涿州市| 东平县| 青州市| 马山县| 南宁市| 舟曲县| 镇安县| 房山区| 稷山县| 玛多县| 青海省| 通道| 开阳县| 彭山县| 康马县| 谷城县| 东乌珠穆沁旗| 年辖:市辖区| 和田市| 舞钢市| 石嘴山市| 城口县| 称多县| 高平市| 聂荣县| 普陀区| 嘉兴市|