0

我正在做一个检查配置文件的脚本。为了一次检查多行,我使用了 pcregrep。当我在命令行中使用它时,一切都很好。

当我把它放在一个函数中时,它并没有找到模式。

这是我的功能

function pcregrepF() {
    echo pcregrep -M "$string" $path
    if `pcregrep -M $string $path`; then
            echo "$path --> $string_msg is configured OK"
    else
            echo "$path --> $string_msg is NOT configured correctly"
    fi
}

echo pcregrep -M "$string" $path 只是一个控件来验证它是否需要pcregrep命令获取好的变量

当我使用函数执行文件时,控制台中有以下内容

/etc/yum.repos.d/nginx.repo --> 'NGINX repository' repository is NOT configured correctly
  • 有趣的是:当我复制粘贴echo pcregrep -M "$string" $path控制台中显示的结果时,即:

    pcregrep -M ".*[nginx]*\n.*name=nginx.*.repo*\n.*baseurl=http://nginx.org/packages/centos/.*.releasever/.*.basearch/*\n.*gpgcheck=0*\n.*priority=1*
    

它就像一个魅力

更新:实际上我正在尝试解析 CSV 文件中的正则表达式和路径,下面的行是列名和文件内容的示例:

function,string,string_msg,path,package,space,
pcregrepF,".*[nginx]*\\n.*name=nginx.*.repo*\\n.*baseurl=http://nginx.org/packages/centos/.*.releasever/.*.basearch/*\\n.*gpgcheck=0*\\n.*priority=1*\\n.*enabled=1",NGINX repository,/etc/yum.repos.d/nginx.repo,, ,

这是读取 CSV 文件的函数,并在第一列中调用一个函数或另一个函数:

# Execute CSV - Read CSV file line by line and execute commands in   function of parameters that are read
function executeCSV() {
    file=/home/scripts/web.csv
    while IFS="," read function string string_msg path package space
    do
            $function $string $string_msg $path $package
    done < $file
}

executeCSV

我希望它可以帮助解决问题。

我错过了什么??????

提前致谢

4

2 回答 2

0

您正在尝试执行脚本中的输出pcregrep;删除反引号。

pcregrepF() {
  echo pcregrep -M "$string" "$path"
  if pcregrep -M "$string" "$path"; then
    echo "$path --> $string_msg is configured OK"
  else
    echo "$path --> $string_msg is NOT configured correctly"
  fi
}
于 2017-10-24T13:38:37.717 回答
0

发现错误

实际上,在读取 CSV 文件时,该过程会在每个参数周围添加 ' '。我的 csv 如下所示:

function,string,string_msg,path,package,space,

pcregrepF,"something to search",message to show,path to the file,, ,

在读取第二个参数时,它会在其周围添加 ' ',因此'"something to search"'由于双引号,最终的字符串显然不会出现任何问题。

我是否以错误的方式读取 CSV 文件????

当使用 bash 从 csv 读取时,有什么方法可以避免添加字符?

谢谢 !

于 2017-10-25T08:26:30.210 回答