#!/bin/bash #文件名: rename.sh #用途: 重命名 .jpg 和 .png 文件 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
${filename##*.} 表示获取filename的文件后缀
相关文章
- 03-06每天shell之批量重命名
- 03-06shell下批量重命名svn文件的方法
- 03-06Linux shell 脚本攻略之批量重命名
- 03-06shell 批量重命名图片脚本 ModifyPicsName
- 03-06SHELL之每天每天一小练(二)
- 03-06【Shell】【Gerrit】for循环之批量设置gerrit submit-type类型为REBASE_IF_NECESSARY
- 03-06AWD脚本之批量mysql写shell
- 03-06每天学点Linux命令之Linux-Shell中的数据重定向与管道命令
- 03-06《懒人Shell脚本》之九——批量格式转换脚本实现
- 03-06学习tomcat之通过shell批量管理多个tomcat