Lossless concatenation of audio files with ffmpeg
#!/bin/bash ffmpeg -f concat -i <(for f in /Users/mah/Desktop/*.m4a; do echo "file '$f'"; done) -c copy /Users/mah/Desktop/interview.m4a