shell使用getopts传入参数

help(){
        echo "usage: $0 -f ip.list"
        exit
}
while getopts :f: opt
do
    case $opt in
            f) file_dir=$OPTARG ;;
            *) help ;;                               #当传入其它参数显示help信息
    esac
done
if [ $# -eq 0 ];then
        help                                         #当没有传入参数显示help信息
fi
[[ -z "$file_dir" ]] && help                 #当-f传入的参数为空,显示help信息
    原文作者:Songe_
    原文地址: https://www.jianshu.com/p/606047e17659
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞