Skip to content

Instantly share code, notes, and snippets.

@ptflp
Created October 3, 2018 06:49
Show Gist options
  • Save ptflp/45d975672cd710f064ed2e51fa2f4da0 to your computer and use it in GitHub Desktop.
Save ptflp/45d975672cd710f064ed2e51fa2f4da0 to your computer and use it in GitHub Desktop.
Iteratively rename downloaded mp3 files from Fiddler 2 with regex
#!/bin/bash
for file in *.mp3*; do
if [ -e "$file" ]; then
newname=`echo "$file" | sed 's/#.*//'`
mv "$file" "$newname"
fi
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment