Delete a file by its inode number First use ls -i to find the inode number of the file to be deleted ls -i |grep xxxxxx|awk '{print $2}'|xargs -i rm -f {} xxxxxx is the inode number of the file Delete files by size Delete files with zero size in the current directory and all subdirectories find ./ -size 0 -exec rm {} \; Delete files with zero file size in the current directory (subdirectories are not deleted) find ./ -maxdepth 1 -empty -type f -print -delete #-maxdepth specifies the directory level Summarize The above is the method I introduced to you to delete special character file names or directories in Linux. I hope it will be helpful to you. If you have any questions, please leave me a message and I will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website! You may also be interested in:
|
<<: Vue page monitoring user preview time function implementation code
>>: MySQL 5.7.17 zip installation and configuration tutorial Solution to MySQL startup failure
Table of contents 1.parseInt(string, radix) 2. Nu...
1. Download the software 1. Go to the MySQL offic...
The key codes are as follows: Copy code The code i...
Directly code: select 'bigint unsigned' a...
Preface The server used by the blogger was purcha...
The configuration method of MySQL 5.5.56 free ins...
1. Create a repository in the specified directory...
1. Why write this article? You must have read a l...
The css animation of the rotating flip effect, th...
I would like to share the Windows Server 2016 act...
<br />Original: http://www.alistapart.com/ar...
After I finished reading JavaScript DOM, I had a ...
Table of contents 1. Get the value of browser coo...
Table of contents 1. Requirements description 2. ...
This article mainly introduces the breadcrumb fun...