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 {} \;
2023-01-31 13:26:38
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 {} \;