|
How can I bulk rename Apple iPhone screen captures?As part of my work, I take tons of screen captures on our test Apple iPhone for documentation, but my boss wants me to use SEO friendly file names and it's a huge hassle to rename them one by one. Is there some sort of script I can use on my Mac to fix things? You can indeed solve this problem a wide variety of ways, including some slick Mac graphical utilities that you can find at VersionTracker.com, but let's look at a simple script that solves this problem because I like writing shell scripts! The basic idea is that we're going to replace "IMG_" with a pattern that you specify. For example, perhaps you need "prod-v11" so that IMG_0001.PNG becomes "prod-v11-0001.PNG". Better yet, let's go ahead and fix the all uppercase filename suffix while we're at it too, so it'll end up as "prod-v11-0001.png". To do this, we'll need to transform the old file name into a new one. This is easily done with the powerful "sed" command. Here's how I'd do it: newname="$(echo $name | sed "s/IMG_00/$basename/;s/PNG/png/")"
Well, what I'm doing here is actually transforming IMG_0001.PNG into "pattern01.png" because I know that for my uses I'll never have more than 99 images in the same collection. If you might have more, you'll want to use IMG_0 instead of IMG_00. The transforms are to substitute IMG_00 for the basename pattern, then PNG substituted with png. See how that works? Since I don't want to type in each filename but have them all transform magically in a loop, that's exactly how I'll code it: for name in IMG*PNG
do newname="$(echo $name | sed "s/IMG_00/$basename/;s/PNG/png/")" echo "renaming $name as $newname" mv $name $newname done One more piece is necessary for this to be a useful script: the ability to specify the pattern that should be used for the rename. This is done by grabbing the command argument to the script. Here's my full script: #!/bin/sh
if [ $# -ne 1 ] ; then echo "Usage: $(basename $0) new-base-pattern" exit 0 fi basename="$1" for name in IMG*PNG do newname="$(echo $name | sed "s/IMG_00/$basename/;s/PNG/png/")" echo "renaming $name as $newname" mv $name $newname done exit 0 When run against a bunch of iPhone screen shots on my Mac, here's what I see: $ sh rename-iphone-pics.sh apple-iphone-download-app-
renaming IMG_0001.PNG as apple-iphone-download-app-01.png renaming IMG_0002.PNG as apple-iphone-download-app-02.png renaming IMG_0003.PNG as apple-iphone-download-app-03.png renaming IMG_0004.PNG as apple-iphone-download-app-04.png renaming IMG_0005.PNG as apple-iphone-download-app-05.png renaming IMG_0006.PNG as apple-iphone-download-app-06.png Quickly and easily done. Works for you, I hope?
Categorized:
Mac OS X Help
,
Shell Script Programming
(Article 8823,
Written by Dave Taylor)
Tagged: apple iphone, renaming files, screen captures, shell scripts Previous: How do I filter out status updates on Facebook? Next: How do I download a new application to my Apple iPhone? Subscribe!
Rather amazingly, there are no comments on this article yet.
I have something to say, now that you mention it, but ...
I do have a comment, now that you mention it!
|
Recommended
Recent Entries
Search
I Need Help!
Apple iPad Help
Articles and Reviews Auctions and Online Shopping Blogs and RSS Feeds Building Web Site Traffic Business and Management CGI Scripts and Web Site Programming Computer and Internet Basics d) None of the Above Facebook Help Google Plus Help HTML and CSS Industry News and Trade Shows iPhone and Cell Phone Help iPod, Sony PSP and MP3 Player Help Mac OS X Help Pay Per Click (PPC) Advertising Search Engine Optimization (SEO) Shell Script Programming Tech Support Video Help The Writing Business Twitter, LinkedIn and Social Network Help Unix and Linux Help Video Game Tips and Help Windows PC Help WordPress Help |