删除文件名显示乱码的文件

[root@mdw etc]# ls -li
总用量 23136
663547 -rw-r--r--  1 root root        0  5月 14 15:57 ?#
663556 -rw-r--r--  1 root root        0  5月 14 15:57 ?

[root@mdw etc]# find . -inum 663556 -print -exec rm {} -rf \;
./??
[root@mdw etc]# find . -inum 663547 -print -exec rm {} -rf \;
./?#

猜你喜欢

转载自tessykandy.iteye.com/blog/1880557