linux 批量重命名文件

模拟结果文件路径结构大概是:/当前目录/模型名/字模型名模拟/模拟温度/模拟结果文件。

模拟结果文件命名时相同的。模拟结果文件需要修改模拟结果文件的后缀名。

附shell脚本:

find -type f|grep 'bonds.reax'|xargs rename 's/\.reax$/\.bof/' //该目录及子目录下所有'bonds.reax'文件重命名为'bonds.bof'

find -type f|grep 'dump.reax'|xargs rename 's/\.reax$/\.trj/' //该目录及子目录下所有'bonds.reax'文件重命名为'bonds.bof'

find -type f|grep 'data'|xargs rename 's/\.data$/\.anm/' //该目录及子目录下所有含data的文件修改后缀

posted @ 2014-04-03 12:33  skaco  阅读(681)  评论(0编辑  收藏  举报