On Wednesday 30 January 2008 14:21, Chris Roberts wrote: > amixer > while [ $? != 0 ]; do > amixer > sleep 1 > done
Ooops! Although it does work - "amixer" and "sleep 1" would be better the other way around: amixer while [ $? != 0 ]; do sleep 1 amixer done Chris. ------------------------------------------------------------------------- This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2008. http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ _____________________________________________________________________ Ltsp-discuss mailing list. To un-subscribe, or change prefs, goto: https://lists.sourceforge.net/lists/listinfo/ltsp-discuss For additional LTSP help, try #ltsp channel on irc.freenode.net
