Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How does Linux empty the contents of a file?

2025-01-17 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/01 Report--

This article mainly explains "Linux how to clear the file content", the article explains the content is simple and clear, easy to learn and understand, the following please follow the editor's train of thought slowly in depth, together to study and learn "Linux how to empty the file content" bar!

1. Use the redirect method [root@centos7 ~] # du-h test.txt 4.0K test.txt [root@centos7 ~] # > test.txt [root@centos7 ~] # du-h test.txt 0 test.txt2, use the true command to redirect the empty file [root@centos7 ~] # du-h test.txt 4.0K test.txt [root@centos7 ~] # true > test.txt [root@centos7 ~] # du-h test.txt 0 test.txt3, Use the cat/cp/dd command and / dev/null device to clear the file [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: is "test.txt" overwritten? 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 recorded 0's read in and 0's write out 0 bytes (0 B) has been copied 0.000266781 seconds, 0.0 kB/ seconds [root@centos7 ~] # du-h test.txt 0 test.txt4, use the echo command to clear the file [root@centos7 ~] # echo "Hello World" > test.txt [root@centos7 ~] # du-h test.txt 4.0K test.txt [root@centos7 ~] # echo-n "> test.txt = > to add the"-n "parameter, which is"\ n "by default. That is, the carriage return character [root@centos7 ~] # du-h test.txt 0 test.txt5, use the truncate command to clear the file [root@centos7 ~] # du-h test.txt 4.0K test.txt [root@centos7 ~] # truncate-s 0 test.txt-s parameter to set the size of the file, empty the file, set it to 0 [root@centos7 ~] # du-h test.txt 0 test.txt thank you for reading, the above is the content of "Linux how to clear the contents of the file", after the study of this article, I believe you have a deeper understanding of how Linux empties the contents of the file, and the specific use needs to be verified in practice. Here is, the editor will push for you more related knowledge points of the article, welcome to follow!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report