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