Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Bad math expression due to parameters
- X-seq: zsh-users 9374
- From: DervishD <zsh@xxxxxxxxxxxx>
- To: Zsh Users <zsh-users@xxxxxxxxxx>
- Subject: Bad math expression due to parameters
- Date: Sat, 3 Sep 2005 01:16:50 +0200
- Mail-followup-to: Zsh Users <zsh-users@xxxxxxxxxx>
- Mailing-list: contact zsh-users-help@xxxxxxxxxx; run by ezmlm
- Organization: DervishD
Hi all :)
I have this in a script, after parsing command line arguments:
[[ $OPTARG -lt 8 ]] && OPTARG=8
If I call the script like this:
$ ./script -o --
then $OPTARG is "--" and that gives a "bad math expression" in
the test above.
How can I solve this? Must I validate $OPTARG before messing with
it on a math expression? Is this validation enough?:
[[ "OPTARG" = [[:digit:]]## ]]
Can I do a more clever validation?
Thanks a lot in advance :)
Raúl Núñez de Arenas Coronado
--
Linux Registered User 88736 | http://www.dervishd.net
http://www.pleyades.net & http://www.gotesdelluna.net
It's my PC and I'll cry if I want to...
Messages sorted by:
Reverse Date,
Date,
Thread,
Author