我想将目录中的文件重命名为序列号。
stars_01_012.png
stars_01_014.png
stars_01_015.png
stars_01_017.png
stars_02_012.png
stars_02_014.png
stars_02_015.png
stars_02_017.png
并将其更改为
stars_01_001.png
stars_01_002.png
stars_01_003.png
stars_01_004.png
stars_02_001.png
stars_02_002.png
stars_02_003.png
stars_02_004.png
亲属但不完全: 如何在macOS终端中批量重命名文件? 如何使用终端批量重命名文件?
rename
来执行此操作,您可以使用自制软件在macOS上安装:
brew install rename
然后,该命令如下所示:
rename --dry-run -X -e 'my @parts=split /_/; my $this=$parts[0].$parts[1]; if(!defined($ENV{previous}) || $this ne $ENV{previous}){$ENV{previous}=$this; $ENV{N}=0}; $ENV{N}=$ENV{N}+1; $_ = $parts[0]."_".$parts[1]."_".$ENV{N}' *png
示例输出
'stars_01_012.png' would be renamed to 'stars_01_1.png'
'stars_01_014.png' would be renamed to 'stars_01_2.png'
'stars_01_015.png' would be renamed to 'stars_01_3.png'
'stars_01_017.png' would be renamed to 'stars_01_4.png'
'stars_02_012.png' would be renamed to 'stars_02_1.png'
'stars_02_014.png' would be renamed to 'stars_02_2.png'
'stars_02_015.png' would be renamed to 'stars_02_3.png'
'stars_02_017.png' would be renamed to 'stars_02_4.png'
'stars_88_099.png' would be renamed to 'stars_88_1.png'
解释:
my @parts=split /_/
使用下划线作为分隔符将文件名分成 3 个部分,
my $this=$parts[0].$parts[1]
保存了简单地连接在一起的前两个部分,例如"stars01",
if
语句测试前两部分中的任何一部分是否已更改,然后
$ENV{previous}=$this; $ENV{N}=0
文件名的当前词干保存在名为previous
的环境变量中,并将当前顺序计数器保存在另一个环境变量中N
,
$ENV{N}=$ENV{N}+1
递增顺序计数器,并且
$_ = $parts[0]."_".$parts[1]."_".$ENV{N}
从各个部分创建新的输出文件名。
如果一切看起来正确,请删除--dry-run
并再次运行它 - 可能在带有文件副本的备用目录中,直到您确定一切正常:-(
以上内容可能更容易阅读,如下所示:
#!/bin/bash
rename --dry-run -X -e '
my @parts=split /_/; # split filename into parts based on underscore
my $this=$parts[0].$parts[1]; # save first two parts of filename in $this
# see if it is a new stem
if(!defined($ENV{previous}) || $this ne $ENV{previous}){
$ENV{previous}=$this; $ENV{N}=0}; # save new initial part, reset N
$ENV{N}=$ENV{N}+1; # increment N
$_ = $parts[0]."_".$parts[1]."_".$ENV{N} # formulate new filename from parts
' *png
如果要将数字零填充为三位数字,请将最后一行更改为以下内容:
$_ = sprintf("%s_%s_%03d",$parts[0],$parts[1],$ENV{N}) # formulate new filename from parts
注:
我将以前的文件前缀和顺序计数器保存到环境变量中以在文件之间保留它们 - 可能有更简单的方法 - 如果有人知道,请 ping 我!谢谢。
您还可以使用"终端"命令行创建 applescript 脚本。 在脚本编辑器中要复制的脚本下方 将文件设置为执行 shell 脚本"ls The_path_of_your_files",您希望重命名",其扩展名(在您的示例 .png 中(具有以下共同点
:**set thefile to do shell script "ls The_path_of_your_files/*.png"
set AppleScript's text item delimiters to return
set chFile to text items of thefile
set AppleScript's text item delimiters to ""
set n to count chFile
repeat with i from 1 to n
set rnFile to item i of chFile
set nwname to (do shell script "echo" & quoted form of rnFile & "| sed 's # stars_01_01 # stars_01_00 #'")
set endFile to (do shell script "mv -f" & quoted form of rnFile & "" & quoted form of nwname)
end repeat**
相当于查找器的重命名多个文件功能
只是一个粗略的答案,为什么要使用终端脚本? 您只需使用具有重命名功能的查找器 通过在示例中选择"stars_01_01"中所有文件的公共部分并将其替换为"stars_01_00",这将导致相同的结果,而无需编写脚本:
sed 's#stars_01_01#stars_01_00#g'