Re: How to repeat playing mp3 with mpg123

2009-03-02 Thread cpghost
On Mon, Mar 02, 2009 at 10:55:29PM +0800, lacalling wrote: > Since mpg123 does not support repeat model, i tried to write a script to > play mp3 repeatedly. > > I tried bash like this > for((;;)) > do >mpg123 [mp3] & > done > but it keeps running new mpg123 in background . You as

Re: How to repeat playing mp3 with mpg123

2009-03-02 Thread Wojciech Puchar
I tried bash like this for((;;)) do mpg123 [mp3] & done but it keeps running new mpg123 in background . while true;do mpg123 filename;done ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ques

How to repeat playing mp3 with mpg123

2009-03-02 Thread lacalling
Since mpg123 does not support repeat model, i tried to write a script to play mp3 repeatedly. I tried bash like this for((;;)) do mpg123 [mp3] & done but it keeps running new mpg123 in background . but mpg123 [mp3] in foreground cant be terminated by control C Could anyone provi