zsh-users
 help / color / mirror / code / Atom feed
* [SOLVED] Mixing long and short options with getopts
@ 2005-09-02 23:09 DervishD
  0 siblings, 0 replies; only message in thread
From: DervishD @ 2005-09-02 23:09 UTC (permalink / raw)
  To: Zsh Users

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


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2005-09-02 23:05 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-09-02 23:09 [SOLVED] Mixing long and short options with getopts DervishD

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/zsh/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).