SHELL:多文件的重命名和移动
Posted zhg1016
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SHELL:多文件的重命名和移动相关的知识,希望对你有一定的参考价值。
rename
find
mv
#实现查找png 和 jpeg文件
#!/bin/bash
#file name: rename.sh
#use: rename.jpg and .png files
count=1;
for img in `find . -iname ‘*.png‘ -o -iname ‘*.jpg‘ -type f -maxdepth 1`
do
new=image-$count.${img##*.}
echo "Renaming $img to $new"
mv "$img" "$new"
let count++
done
以上是关于SHELL:多文件的重命名和移动的主要内容,如果未能解决你的问题,请参考以下文章