$vifunction displayHelp{ echo "Use '-f' to set the file to be used " echo "Use '-s' to sort the data bya column" echo "Use '-m' to output the rows which match this Expression"}function displayColumn{ columnnumber="" awk '{print $'$columnnumber'}' }function displayParameter{ parameter="" columnnumber="" awk -v s= -v c= '$c ~ s { print }' }while getopts f:s:m:h optdo case "$opt" in h) displayHelp;; f) filepath="$OPTARG";; s) column="$OPTARG" displayColumn $filepath $column ;; m) searchParam="$OPTARG" displayParameter $filepath $column $searchParam ;; esacdone解决方法 在displayColumn()中,你没有使用-v变量传递,但是在displayParameter()中你是.您应该始终使用-v而不是嵌入shell变量.
同样在displayParameter()中,您可以分配两个变量,而不会使用它们.
在扩展时,应始终引用shell变量.当它们单独出现时,没有必要在作业的右侧引用它们.
如果这是你想要的,那么就没有强制执行-f是必需的.如果没有提供它(以及它的必需参数),你的脚本将尝试从stdin读取(这可能是你想要的).
没有执行-m和-s是必需的.如果两者都不存在,AWK命令将输出错误消息.
通常,必须将参数作为位置参数处理,并且选项标志应该用于选项(及其参数).
你的问题可能更适合Code Review.
总结以上是内存溢出为你收集整理的linux – 压缩Bash脚本来解析文件全部内容,希望文章能够帮你解决linux – 压缩Bash脚本来解析文件所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)