文件名含有特殊字符,直接使用 rm 可能删除不了,可以使用如下方法: 使用 ls -i 查处该文件的 inode 号,假设为123456 使用find命令删除 find ./ -inum 123456 -exec rm '{}' \;