将文件重命名为consutive number
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了将文件重命名为consutive number相关的知识,希望对你有一定的参考价值。
Found on the Ubuntu forum: http://ubuntuforums.org/showthread.php?t=1355021Renames files to 0001.jpg, 0002,jpg etc
You can insert a prefix here: "prefix-$j.jpg"
i=1 for file in *.jpg do j=$( printf "%04d" "$i" ) mv "$file" "$j.jpg" (( i++ )) done
以上是关于将文件重命名为consutive number的主要内容,如果未能解决你的问题,请参考以下文章