kaisawind's blog
关于
所有帖子
linux批量重命名文件 - Thu, Apr 21, 2022
linux批量重命名文件
ls
|
cat -n
|
while
read
n f
;
do
mv
"
$f
"
`
printf
"%012d.jpg"
$n
`
;
done