線上一臺機器因爲程序異常致使目錄產生了不少文件名亂碼的文件,直接經過rm好像刪不了。node
能夠經過inode號 進行刪除:shell
[root@ ~]#ls -i [root@ ~]# find . -inum xxx | xargs rm -rf
或者:code
find -inum xxx -delete