码迷,mamicode.com
首页 > 系统相关 > 详细

过生日,也要学学哈,这次是SHELL的GETOPTS

时间:2015-12-19 14:58:56      阅读:186      评论:0      收藏:0      [点我收藏+]

标签:

今天是WEBSOCKET,,

先完成一个SHELL的GETOPS,周一就用得着。

#!/bin/bash

echo "usage: ./$0 -t (prism|opscripts)"

function scp_prism()
{
    echo "scp_prism()"
}

function scp_opscripts()
{
    echo "scp_opscripts()"
}


while getopts t:h  OPT
do
    case  $OPT in
    "t")
        TYPE=$OPTARG
        if [ $TYPE = "prism" ];then
            scp_prism
        fi
        if [ $TYPE = "opscripts" ];then
            scp_opscripts
        fi
        ;;
    "h")
        echo "./$0 -t (prism|opscripts)"
        ;;
    \?)
        echo "$0 -t (prism|opscripts)"
        exit -1
    esac
done

 

过生日,也要学学哈,这次是SHELL的GETOPTS

标签:

原文地址:http://www.cnblogs.com/aguncn/p/5059087.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!