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 {} \;

posted @ 2017-07-21 09:26  天国的恩赐  阅读(728)  评论(0编辑  收藏  举报