[Linux] linux 刪除亂碼的檔案&資料夾

tolilong發表於2016-10-27

[root@oracle6 tmp]# ll -i
786494 -rw-r--r--. 1 root root 29 Oct 27 19:23 xx
[root@oracle6 tmp]# find . -inum 786494 -exec rm -rf {} \;


[root@oracle6 tmp]# ll -i
786494 drwxr-xr-x. 2 root root 4096 Oct 27 21:18 xxxxxx
[root@oracle6 tmp]# find . -inum 786494 -exec rm -rf {} \;

切換到亂碼的資料夾
[root@oracle6 tmp]# cd $(find . -inum 786494)

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/24237320/viewspace-2127243/,如需轉載,請註明出處,否則將追究法律責任。

相關文章