notes/Combine all MP3s into one file with ffmpeg-UUVJ70GH.sh
#!/bin/bash

x=$(ls|while read mp3;do echo -n "$mp3|";done)
ffmpeg -i "concat:${x::-1}" -acodec copy output.mp3

syntax highlighted by Code2HTML, v. 0.9.1