Join Mp3 files with cat
The cat
command is useful for concat
enating (get it ?) various text files.
But did you know you can also join MP3 files with it ?
Just do something like this:
cat file1.mp3 file2.mp3 > file3.mp3
This will result in file3.mp3
containing the joined audio from file1
and file2
.