Skip to content

Instantly share code, notes, and snippets.

@jesusgollonet
Created April 24, 2013 11:31
Show Gist options
  • Save jesusgollonet/5451477 to your computer and use it in GitHub Desktop.
Save jesusgollonet/5451477 to your computer and use it in GitHub Desktop.
sox: convert a directory of aiff files to wav
for i in `ls *.aiff`; do echo -e "$i"; sox $i $i.wav; echo -e "$i.wav"; done;
@michaelforrest
Copy link

Doesn't work if files have spaces in their names...

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment