我正在做一个检查配置文件的脚本。为了一次检查多行,我使用了 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
我希望它可以帮助解决问题。
我错过了什么??????
提前致谢