Skip to content

Instantly share code, notes, and snippets.

@sillage
Created July 6, 2015 15:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sillage/ffa800b0dec1279cd4a0 to your computer and use it in GitHub Desktop.
Save sillage/ffa800b0dec1279cd4a0 to your computer and use it in GitHub Desktop.
#!/bin/sh
while read file;
do
touch -r "${file}" "${file%.flac}.mp3";
done < <(ls *.flac)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment