Windows XP Windows 7 Windows 2003 Windows Vista Windows教程綜合 Linux 系統教程
Windows 10 Windows 8 Windows 2008 Windows NT Windows Server 電腦軟件教程
 Windows教程網 >> Linux系統教程 >> Linux教程 >> linux刪除亂碼文件

linux刪除亂碼文件

日期:2017/2/7 14:24:02      編輯:Linux教程
 

一些亂碼文件不可以通過普通的rm命令進行管理。
可以通過刪除i節點的方式刪除。
[root@yusky]# ls
??,?K?k?ͨa*.?J]?k?Φ??P???Z?b?A?R???X??u??.?????*H@B?T???xS*查看亂碼文件的i結點
[root@yusky]# ls -liaha
54263996 -rw-rw-r-- 1 yusky 0 Sep 20 16:57 ??,?K?k?ͨa*.?J]?k?Φ??P???Z?b?A?R???X??u??.?????*H@B?T???xS*
使用find命令找文件刪除
[root@yusky]# find . -inum 54263996 -exec rm {} -rf \;
[root@yusky]# ls -a
. ..

現在已經刪除了。
刪除之前請仔細確認,以免誤刪

Copyright © Windows教程網 All Rights Reserved