On Sat, 14 Oct 2006 13:15:58 +0100 "Paul Smith" <phhs80@xxxxxxxxx> wrote: > Dear All > > I would like to glue two mp3 files into a single one. Is that > possible? If so, how can one do that? > > Thanks in advance, > > Paul Hello, Paul I just tried something that I thought might work, and I was rather amused that it actually worked perfectly: cat filename1.mp3 filename2.mp3 > filename3.mp3 You could also do something like this: cat *.mp3 > filename.mp3 Hope that helps :) Steven P. Ulrick