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
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
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
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..