Error[8]: Undefined offset: 1, File: /www/wwwroot/outofmemory.cn/tmp/plugin_ss_superseo_model_superseo.php, Line: 121
File: /www/wwwroot/outofmemory.cn/tmp/plugin_ss_superseo_model_superseo.php, Line: 473, decode(

概述我有这个bash脚本来填充一个文本文件,我想让它更简单,更简单,使它更有效率,有没有人有任何想法,我怎么能这样做? $vifunction displayHelp{ echo "Use '-f' to set the file to be used " echo "Use '-s' to sort the data bya column" ec 我有这个bash脚本来填充一个文本文件,我想让它更简单,更简单,使它更有效率,有没有人有任何想法,我怎么能这样做?

$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脚本来解析文件所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

)
File: /www/wwwroot/outofmemory.cn/tmp/route_read.php, Line: 126, InsideLink()
File: /www/wwwroot/outofmemory.cn/tmp/index.inc.php, Line: 165, include(/www/wwwroot/outofmemory.cn/tmp/route_read.php)
File: /www/wwwroot/outofmemory.cn/index.php, Line: 30, include(/www/wwwroot/outofmemory.cn/tmp/index.inc.php)
linux – 压缩Bash脚本来解析文件_系统运维_内存溢出

linux – 压缩Bash脚本来解析文件

linux – 压缩Bash脚本来解析文件,第1张

概述我有这个bash脚本来填充一个文本文件,我想让它更简单,更简单,使它更有效率,有没有人有任何想法,我怎么能这样做? $vifunction displayHelp{ echo "Use '-f' to set the file to be used " echo "Use '-s' to sort the data bya column" ec 我有这个bash脚本来填充一个文本文件,我想让它更简单,更简单,使它更有效率,有没有人有任何想法,我怎么能这样做?

$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脚本来解析文件所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/1017502.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-23
下一篇 2022-05-23

发表评论

登录后才能评论

评论列表(0条)

保存