我找到了一个名为'。| rst412slp10lad10_noTopo.png'的文件,我真的想删除它。我该怎么办?
我尝试使用ls -al
来获取文件的信息然后我得到了这个:
ls: cannot access '.|rst412slp10lad10_noTopo.png': No such file or directory
total 0
drwxrwxrwx 1 jinshengye jinshengye 4096 Jun 5 17:10 .
drwxrwxrwx 1 jinshengye jinshengye 4096 Jun 5 16:58 ..
-????????? ? ? ? ? ? .|rst412slp10lad10_noTopo.png
我该怎么办?
答案 0 :(得分:0)
使用
查找inode编号ls -li
用
删除它find . -inum 1234 -delete
答案 1 :(得分:0)
好的,您可以尝试使用引号删除
rm ".|rst412slp10lad10_noTopo.png"
但这可能不会起作用,您可能需要设置权限和/或重新启动(或更多)......看看这个: