windows聚焦图片文件重命名bash脚本

#!/bin/bash
for file in `ls`
do
    if [ $file != "rename.sh" ];then
       mv $file $file.png
    fi
done

猜你喜欢

转载自www.cnblogs.com/wswind/p/10328261.html