Skip to content

Instantly share code, notes, and snippets.

@robinfang
Created March 10, 2016 16:48
Show Gist options
  • Select an option

  • Save robinfang/85e6950bf2c190a627d9 to your computer and use it in GitHub Desktop.

Select an option

Save robinfang/85e6950bf2c190a627d9 to your computer and use it in GitHub Desktop.
rename .ass according to .mkv filenames
ls *.mkv |sed "s/.mkv/.ass/g" >mkv.ass.list
for file in *.ass;do read line;mv -v "${file}" "${line}";done <mkv.ass.list
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment