In our daily work, we often come into contact with files without spaces. This makes the deletion operation much simpler. But sometimes we come across files with spaces in them. How should we delete this kind of file? First, let's demonstrate how to use the find command combined with the xargs command to delete files without spaces. [root@ELK-chaofeng test]# touch 1.txt 2.txt [root@ELK-chaofeng test]# ls 1.txt 2.txt [root@ELK-chaofeng test]# find . -type f | xargs ./1.txt ./2.txt [root@ELK-chaofeng test]# find . -type f | xargs rm -rf [root@ELK-chaofeng test]# ls [root@ELK-chaofeng test]# Next we demonstrate deleting files with spaces [root@ELK-chaofeng test]# touch 1.txt 2.txt '1 2.txt' [root@ELK-chaofeng test]# ls 1 2.txt 1.txt 2.txt [root@ELK-chaofeng test]# ll total 0 -rw-r--r-- 1 root root 0 Feb 14 12:24 1 2.txt -rw-r--r-- 1 root root 0 Feb 14 12:24 1.txt -rw-r--r-- 1 root root 0 Feb 14 12:24 2.txt [root@ELK-chaofeng test]# find . -type f -print0 | xargs -0 rm -rf [root@ELK-chaofeng test]# ls The above parameter -print0, compared with the default -print, outputs sequences separated by null characters instead of spaces. xargs also has a parameter -0, which can accept input streams separated by null instead of spaces. The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM. You may also be interested in:
|
<<: Monitor changes in MySQL table content and enable MySQL binlog
>>: Why is it not recommended to use index as key in react?
We all know that the commonly used positioning me...
Table of contents Preface Simulating data Merged ...
Inline format <colgroup>...</colgroup>...
Table of contents First method App.vue Home.vue H...
After the image is built successfully, it can be ...
my.cnf is the configuration file loaded when MySQ...
The development of Docker technology provides a m...
Table of contents 1. Basic SELECT statement 1. Qu...
1. Delete the original mariadb, otherwise mysql c...
How to deploy Oracle using Docker on Mac First in...
Table of contents webpack5 Official Start Buildin...
vue+element UI encapsulates a public function to ...
Source code (some classes deleted): Copy code The ...
<br />This tag can be used to directly add a...
Table of contents 1. Test environment 1.1 Hardwar...