Skip to content

Instantly share code, notes, and snippets.

@max-potapov
Created March 4, 2016 15:42
Show Gist options
  • Save max-potapov/9a884cf57bf5a080294a to your computer and use it in GitHub Desktop.
Save max-potapov/9a884cf57bf5a080294a to your computer and use it in GitHub Desktop.
#!/bin/sh
if [[ -d $1 ]]; then
for fileName in $1/*
do
if [ -d "$fileName" ]; then
pushd "$fileName"
mp3splt -c *.cue -o "@N @p - @t" -a *.mp3 || exit 1
popd
fi
done
fi
echo 'yay!'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment