Zsh Mailing List Archive
Messages sorted by: Reverse Date, Date, Thread, Author

[SOLVED] Mixing long and short options with getopts



    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