Bertram Scharpf wrote:
> Hi,
> 
> Am Mittwoch, 04. Nov 2009, 17:57:24 +0900 schrieb Qu3ry Qu3ry:
>> Suppose I have the following files to group and merge, according to
>> their filenames. How to do it on Ruby?
>> 
>> P.S In BASH, you can merge two mp3 files perfectly with the cat command.
>> # cat file1.mp3 file2.mp3 > file.mp3
>> 
> 
>   ruby -pe '' file1.mp3 file2.mp3 >file.mp3
> 
> Bertram

How to iterate the mp3 files according to their names, so that files 
with the same names are merged together?


-- 
Posted via http://www.ruby-forum.com/.