linux下删除乱码文件

linux下删除乱码文件

[mysql@db_shenji tmp]$ ls -ldi *
32642804 -rw-r--r-- 1 root  root  51805959 Jul 23 16:09 INSERT_fudao_course.sql
32642803 -rw-r--r-- 1 root  root  56896841 Jul 23 16:07 dml.sql
32642806 -rw-rw-r-- 1 mysql mysql        0 Aug 20 11:22 ???=?A
32642805 -rw-rw-r-- 1 mysql mysql        0 Aug 20 11:22 ??B?*K???U??
[mysql@db_shenji tmp]$ rm -rf `find ./ -inum 32642805`
[mysql@db_shenji tmp]$ ls -ldi
32642790 drwxrwxr-x 2 mysql mysql 4096 Aug 20 11:26 .
[mysql@db_shenji tmp]$ ls -ldi *
32642804 -rw-r--r-- 1 root  root  51805959 Jul 23 16:09 INSERT_fudao_course.sql
32642803 -rw-r--r-- 1 root  root  56896841 Jul 23 16:07 dml.sql
32642806 -rw-rw-r-- 1 mysql mysql        0 Aug 20 11:22 ???=?A
[mysql@db_shenji tmp]$ rm -rf `find ./ -inum 32642806`
[mysql@db_shenji tmp]$ ls -ldi *
32642804 -rw-r--r-- 1 root root 51805959 Jul 23 16:09 INSERT_fudao_course.sql
32642803 -rw-r--r-- 1 root root 56896841 Jul 23 16:07 dml.sql
[mysql@db_shenji tmp]$ 
原文地址:https://www.cnblogs.com/bjx2020/p/11381939.html