Skip to content

Instantly share code, notes, and snippets.

@jdkelleher
Created August 25, 2020 18:10
Show Gist options
  • Save jdkelleher/524c386a81c5d53c917a2bf6fa2c4f3c to your computer and use it in GitHub Desktop.
Save jdkelleher/524c386a81c5d53c917a2bf6fa2c4f3c to your computer and use it in GitHub Desktop.
Fix .srt naming...
for d in Season* ; do cd "$d"; for x in *[^.]???.srt ; do newname=`basename -s .srt "$x"`; mv "$x" "$newname".eng.srt; done; cd ..; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment