Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.

537635

macrumors 65816
Original poster
Mar 7, 2009
1,096
970
Slovenia, EU
I would like to create an automator workflow and inside a shell script, which would rename files:

123456789.jpg -> 456.jpg
etc.

All the files have the same name lenght and I would like to truncate the names with using only the middle characters (6 of them).

Help appreciated!
 

537635

macrumors 65816
Original poster
Mar 7, 2009
1,096
970
Slovenia, EU
Thank you for the idea, but I intentionally posted this in the programming section and not in the applications section.
 

chown33

Moderator
Staff member
Aug 9, 2009
10,732
8,408
A sea of green
I would like to create an automator workflow and inside a shell script, which would rename files:

123456789.jpg -> 456.jpg
etc.

All the files have the same name lenght and I would like to truncate the names with using only the middle characters (6 of them).

"6 of them" is unclear. Your example shows only 3 middle characters, not 6, and a preserved suffix (extension). Did you really mean the 3 middle characters, after excluding the suffix?

What's your experience with shell globbing patterns, reg-ex, or any programming language?
 

537635

macrumors 65816
Original poster
Mar 7, 2009
1,096
970
Slovenia, EU
Basically I would just like to know, which parameters to use with "mv" command. It's not important, what is the position of the characters, I'll add that later. And suffix should be preserved.

for f in "$@"
do
Shortname=${f:3:6}
mv "$f" "$Shortname"
done

but it doesn't really work... :(

Experience? None :).

But so far I managed to put together a shell script, which renames files with exiftool, so I can sort pictures by name and date at the same time (YYYY-MM-DD HH-MM-SS).
 

DennisVar

macrumors newbie
Jun 21, 2010
28
0
You were pretty close! Disclaimer: use at your own risk, test with a small set of files first, and so on:


for F in *
do
SHORTNAME=${F:3:3}${F:9:4}
mv "$F" "$SHORTNAME"
done


Note that the first line lists all files in the current folder, which means that you probably want to have the script (if you save it in a file) be in another folder.

As you're learning, I highly recommend using "echo" to sanity-check things. Here, you can tack on echo before the mv line. This will print each mv command it's about to run instead of actually running it. I.e.:


for F in *
do
SHORTNAME=${F:3:3}${F:9:4}
echo mv "$F" "$SHORTNAME"
done
 
Last edited:

537635

macrumors 65816
Original poster
Mar 7, 2009
1,096
970
Slovenia, EU
Here's the final update:

Your disclaimer was spot on. The first thing I did, was to expect "mv" in an automator process to start in a given folder. Well it starts in home folder, as I later learned. The script worked and it nicely renamed all the files and folders in my /home. Lesson learned.

From here on everthing worked like a charm.

This is the final code.

for f in "$@"
do
FILEBASE=$(basename "$f")
FOLDERBASE=$(dirname "$f")
SHORTNAME=20${FILEBASE:14:2}${FILEBASE:10:2}${FILEBASE:6:2}${FILEBASE:16:3}${FILEBASE:20:2}${FILEBASE:23:2}
NEWNAME=$FOLDERBASE"/"$SHORTNAME
mv "$f" "$NEWNAME".mov
done


The problem with movies files on iPhone is, that they are a headache to organize. Timestamp in EXIF is wrong (don't really know why), only the filename is correct.

Video 10. 02. 13 17 42 11.mov

The problem is, that I have my pictures organized as YYYYMMDD HHMMSS. Therfor I needed this script to match the names of the movies.


This is the final result:

Renaming the images via the EXIF timestamp:
F4r979G.png


Renaming the movies by truncating the filename to match:
o37qv5d.png


Result:
3LaT8tr.png




Took quite so time, but I've learned a lot in the process. Coming from Windows I must say that it is astonishing what an average user can accomplish in terms of modifying the UI to his needs with relatively little effort.


Thanks for all the help!
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.