次のようなファイル名のスクリーンショットのフォルダー全体があります。
http_www.mozilla.org.png
http_www.google.com.png
www の前のすべての要素を削除したい。および .org または .com の後のすべての要素
このようなことを達成するには、Mac の automator で何をすべきですか?
ありがとう
次のようなファイル名のスクリーンショットのフォルダー全体があります。
http_www.mozilla.org.png
http_www.google.com.png
www の前のすべての要素を削除したい。および .org または .com の後のすべての要素
このようなことを達成するには、Mac の automator で何をすべきですか?
ありがとう
それらの名前を変更しようとしている場合は、次の AppleScript を試してください。
tell application "Finder" to set myFiles to files of (choose folder)
repeat with aFile in myFiles
tell application "System Events" to set fileName to aFile's name
set newName to do shell script "echo " & quoted form of fileName & " | sed 's/.*www\\.\\([A-Za-z0-9]*\\).*\\(\\.png$\\)/\\1\\2/'"
tell application "System Events" to set aFile's name to newName
end repeat