Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
[SOLVED] Mixing long and short options with getopts
- X-seq: zsh-users 9373
- From: DervishD <zsh@xxxxxxxxxxxx>
- To: Zsh Users <zsh-users@xxxxxxxxxx>
- Subject: [SOLVED] Mixing long and short options with getopts
- Date: Sat, 3 Sep 2005 01:09:03 +0200
- Mail-followup-to: Zsh Users <zsh-users@xxxxxxxxxx>
- Mailing-list: contact zsh-users-help@xxxxxxxxxx; run by ezmlm
- Organization: DervishD
Hi all :)
Finally I solved my problem with zparseopts not being silent (and
other minor problems) using getopts like this:
while getopts "v-" option $*
do
case $option in
v) do_things_with_v ;;
-) longoption="$1"
process_long_options_here
;;
:) missing_argument_to_a_short_option
;;
?) unknown short option
;;
esac
done
I have another problem, but that will go in another message :)
Thanks for the inspiration, Bart ;)
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