线上一台机器由于程序异常导致目录产生了很多文件名乱码的文件,直接通过rm好像删不了。
可以通过inode号 进行删除:
[root@ ~]#ls -i [root@ ~]# find . -inum xxx | xargs rm -rf
或者:
find -inum xxx -delete