linux环境下删除包含特殊字符的文件或目录

linux环境下删除包含特殊字符的文件或目录

ls -li
Use find command as follows to delete the file if the file has inode number 4063242:

$ find . -inum 4063242 -delete
OR
$ find . -inum 4063242 -exec rm -i {} ;

原文地址:https://www.cnblogs.com/jinshuo/p/7216027.html