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 {} \;
学习如逆水行舟,不进则退. (说不定我的目的地是在下游呢.)