Macでファイルのバッチの名前を変更しようとしています。
ファイルは次のようになります
122-テスト-12.jpg
出力ファイルが必要です
テスト-12.jpg
私はautomatorを使用しようとしていますが、何をしているのかわかりません。
AppleScript を使用できます。
set myFiles to (choose file with multiple selections allowed)
repeat with aFile in myFiles
set aFile to contents of aFile
tell application "Finder"
set fileName to aFile's name
set firstDash to offset of "-" in fileName
set aFile's name to text (firstDash + 1) through -1 of fileName
end tell
end repeat