自言自语

I'm Wang Xianyuan, writing for myself, more studying, more experience…

Linux 乱码文件重命名

By

Linux 下每个文件有唯一的索引号。
ls -i 可获得索引号。
find命令重命名方法如下:
find . -inum 索引号 -exec mv {} newname \;
-exec后为shell命令,{}代表当前文件名,\;表示shell命令结束。

Comments are closed.