AI智能
改变未来

shell脚本使用两个横杠接收外部参数的方法

首先,效果是这样的:

既可以处理短选项(-)又可以处理长选项(–)

[developer@hadoop-cluster-manager shell]$ ./demo.sh --helpsqoop程序开始运行: demo.shUsage: ./demo.sh [options]Options:--append, -a:   追加导入(默认为追加模式)--overwrite, -o: 覆盖导入--method, -m:   single-单日导入interval-区间导入all-全表导入--date, -d:    单日导入,某一日期数据(格式为yyyymmdd)--startdate, -s: 区间导入,开始日期--enddate, -e:  区间导入,结束日期--help, -h     帮助

shell脚本接外部参数有一种很简单的办法,在脚本中使用$0,$1,$2…指代执行脚本时传入的第几个参数($0是脚本名)。

但是,这样做毕竟不够优雅,

另一种方法shell脚本内使用getopts命令,只可以接短选项(eg:-d,-s,-h),很方便,比较简单,可以自己去搜一搜。

但如果想要达成上面这种效果同时支持长选项和短选项(eg:–date,-d,–startdate,-s,–help,-h),

就只能使用getopt命令了:

# 定义命令执行选项if ! ARGS=$(getopt -o aom:d:s:e:h --long append,overwrite,method:,date:,startdate:,enddate:,help -n \"$0\" -- \"$@\"); thenecho \"Terminating...\"echo -e \"Usage: ./$SCRIPT_NAME [options]\\n\"echo -e \"Options:\\n --append, -a:   追加导入(默认为追加模式)\\n --overwrite, -o: 覆盖导入 \\n\\n --method, -m:   single-单日导入\\n          interval-区间导入\\n          all-全表导入\\n\\n --date, -d:    单日导入,某一日期数据(格式为yyyymmdd)\\n\\n --startdate, -s: 区间导入,开始日期\\n --enddate, -e:  区间导入,结束日期\\n\\n --help, -h     帮助\"exit 1fi# 将规范化后的命令行参数分配至位置参数($1,$2,...)# The -- ensures that whatever options passed in as part of the script won\'t get interpreted as options for set, but as options for the command denoted by the $progname variable.eval set -- \"${ARGS}\"# 接受执行选项;赋值给变量while true; docase \"$1\" in-a|--append)mode=\'append\'shift;;-o|--overwrite)mode=\'overwrite\'shift;;-m|--method)method=$2shift 2;;-d|--date)date=$2shift 2;;-s|--startdate)startdate=$2shift 2;;-e|--enddate)enddate=$2shift 2;;--)shiftbreak;;-h|--help)echo -e \"Usage: ./$SCRIPT_NAME [options]\\n\"echo -e \"Options:\\n --append, -a:   追加导入(默认为追加模式)\\n --overwrite, -o: 覆盖导入 \\n\\n --method, -m:   single-单日导入\\n          interval-区间导入\\n          all-全表导入\\n\\n --date, -d:    单日导入,某一日期数据(格式为yyyymmdd)\\n\\n --startdate, -s: 区间导入,开始日期\\n --enddate, -e:  区间导入,结束日期\\n\\n --help, -h     帮助\"exit 0;;?)echo \"missing options, pls check!\"exit 1;;esacdone

到此这篇关于shell脚本使用两个横杠接收外部参数的文章就介绍到这了,更多相关shell脚本接收参数内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

您可能感兴趣的文章:

  • 监控MySQL主从状态的shell脚本
  • 使用Shell脚本如何启动/停止Java的jar程序
  • Shell中使用grep、sed正则提取和替换字符串
  • Shell eval通过变量获取环境变量的方法实现
  • shell脚本实战-while循环语句
  • shell脚本–sed的用法详解
  • linux shell中 if else以及大于、小于、等于逻辑表达式介绍
  • Linux中执行shell脚本的4种方法总结
  • 一个不错的shell 脚本教程 入门级
  • Shell字符串比较相等、不相等方法小结
  • python中执行shell命令的几个方法小结
  • 分享一个可以通过命令简写执行对应命令的Shell脚本
赞(0) 打赏
未经允许不得转载:爱站程序员基地 » shell脚本使用两个横杠接收外部参数的方法