Re: [proaudio] ebuild TODO-list |
[ Thread Index |
Date Index
| More lists.tuxfamily.org/proaudio Archives
]
- To: proaudio@xxxxxxxxxxxxxxxxxxx
- Subject: Re: [proaudio] ebuild TODO-list
- From: Dominique Michel <dominique.michel@xxxxxxxxxxxx>
- Date: Sun, 30 Jul 2006 23:52:34 +0200
- Face: iVBORw0KGgoAAAANSUhEUgAAADAAAAAwBAMAAAClLOS0AAAAJFBMVEXy8ubtkoXo7+b1+fbN cGKCeWDtamweFA8eMkmKPkPtvcWRoqyV0Pn7AAACbElEQVQ4jXXTMWvbQBQA4MOlizsdXEXp KAi09mKcLZ0EJxONDRJVkikg9AtqTm63gtHDmVJs1GsnC0JiaTMJGN2f67uzznJb+gZj9PFO 7717IqdtvCAmem4bxMLp/2BEyEBF1+U/0H8uhI6rv+BVLNrY/gH9T0L8yAxk2yMY3YuZxDCn TY/gpBByyTGktIcZOIvFjPNJmqYJDwrx3cIoBrE0zzG4FF8tfBAwM+DonKCYWjgROZ6Upjcm 5Qje58JAmlKKGfIAjzaDUuogZBY2Bjg14eDbywMIqZvwqgqFBcVFB0seYONLb00ZZlh4p0F6 FHNoUMyKAzxowJSQTyj+XloYs3MN3GeMpzyYSTMshLM00ODpWlPp4SDbqs4cViDcGAgmlK/a PsaOg7DvIQ3wzANMqB/iQW/XTkoTLO6XhSeHUoQKe+NLjyY/Ldx7CW2D4WTYhZ3V0GP64RpP Q/E66IUWMLj3+nDn4w2ejMACyXFeHZy6ETcZehc49bv1GQ/0bazNuzm97mDkhnoie9i30WYM w/YCnYT7Fx308s98n0IT//Jod1+aOzdzYXLVbftol+PC+REG3u+0AxdEtuSMB6G+DLGwMH4E vXGmJn8VCLM9LhmrOAMQYt5Wi/DFgIC52iFkUzMpDVmjAaDZRGC+JGwDqzJ/G5fUUcWZAaE7 YfvPLYtIU1Wb4A2IeS7uDMgcIFutiCr766qGfKHyuxvTIERKXVNSN27lDgCuBuojlpxIyJV6 ritS1uWWuHF2Ww7qcIKbqEFVNbmtmm3vGSCHbVXjikrY3SpVxwQWw2aIjwG+ueXTJDmHeK6a HfwGyU5ZSlGeSRQAAAAASUVORK5CYII=
Le Sun, 30 Jul 2006 17:14:35 -0400,
paul wisehart <listreader@xxxxxxxxxxx> a écrit :
> On Sun, Jul 30, 2006 at 09:48:38PM +0200, Dominique Michel wrote:
> > For the parameter, I have done a new script:
> >
> > #!/bin/bash
> > cd /usr/lib/rt-exec
> > if [ ! $0 ]
> > then ./start -s $0 &
> > else ./start &
> > fi
> >
> > It seam to work. When runing "/usr/sbin/rt_exec sched_1". the script
> > will run "./start -s sched_1"
> > But now, the srcipt don't show the output of the command in the console,
> > and I don't know how it is possible to modify the script to do that.
> > Any clue someone?
> >
> > I know at it work because mon is working, but it will be really cool
> > to have start's output in the console, it is some interesting output.
> >
>
> don't background it ?
>
No, the only way to get those comments is to remove the final "&". Or if you start it directly by
cd /usr/lib/rt-exec
./start &
it run in the background, but just after the start, you get some comments about what it is doing at start time. And I thing at they are usefull comments.
Dominique