Re: Help with script --

2007-08-28 Thread Bernd Eggink
t0nedef schrieb: echo "Please enter a network name" read ESSID if [ -n $ESSID ] You probably meant: if [ -z $ESSID ] then echo "unable to use a blank network name" exit $E_NOESSID fi Regards, Bernd -- Bernd Eggink [EMAIL PROTECTED] http://sudrala.de

Re: Help with script --

2007-08-28 Thread Andreas Schwab
Bernd Eggink <[EMAIL PROTECTED]> writes: > t0nedef schrieb: > >> echo "Please enter a network name" >> read ESSID >> if [ -n $ESSID ] > > You probably meant: > if [ -z $ESSID ] Really you want this: if [ -z "$ESSID" ] Andreas. -- Andreas Schwab, SuSE Labs, [EMAIL PROTECTED] SuSE Linux Pr

Re: problems cross-compling bash-3.2

2007-08-28 Thread Mike Frysinger
On Tuesday 28 August 2007, Christian Boon wrote: > Christian Boon wrote: > > Chet Ramey wrote: > >> Christian Boon wrote: > >>> Hello, > >>> > >>> i want to cross compile bash-3.2 for my pxa255 arm processor and its > >>> working although i can't get job control working. > >> > >> It tells you it w

Re: problems cross-compling bash-3.2

2007-08-28 Thread Christian Boon
Christian Boon wrote: Chet Ramey wrote: Christian Boon wrote: Hello, i want to cross compile bash-3.2 for my pxa255 arm processor and its working although i can't get job control working. It tells you it won't be able to: checking for presence of necessary job control definitions..