Skip to content

Instantly share code, notes, and snippets.

@bradparks
Created December 4, 2015 03:40
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bradparks/12444ff9926824decbc9 to your computer and use it in GitHub Desktop.
Save bradparks/12444ff9926824decbc9 to your computer and use it in GitHub Desktop.
Merge a bunch of mp3 files in the current directory into one mp3 file called "all.mp3"
rm -f all.mp3 && cat *.mp3 > temp_file.dat; sleep 1; mv temp_file.dat all.mp3 && echo && echo "Your mp3 files have been merged into one file - all.mp3" && echo
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment