Skip to content

Instantly share code, notes, and snippets.

@rj76
Created September 12, 2019 08:17
Show Gist options
  • Save rj76/7b9b87193ede3971b598f5fc67992863 to your computer and use it in GitHub Desktop.
Save rj76/7b9b87193ede3971b598f5fc67992863 to your computer and use it in GitHub Desktop.
rename dragon ball z files so they are in a uniform format
#!/bin/bash
for file in *.mkv; do
newfile=`echo $file | sed "s/[_]/ /g" | sed "s/\s\.mkv$/\.mkv/" | sed "s/^DBZ -/Dragonball Z/"`
mv "$file" "$newfile"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment