shell getopt
摘要:
echo $*while getopts ":a:bc" optdo case $opt in a ) echo $OPTARG echo $OPTIND;; b ) echo "b $OPTIND";; c ) echo "c $OPTIND";; ? ) echo "error" exit 1;... 阅读全文
posted @ 2015-11-09 13:24 DayAfterDay 阅读(203) 评论(0) 推荐(0) 编辑