【发布时间】:2021-06-21 21:10:15
【问题描述】:
我正在编写一个脚本来打印与给定字符串匹配的单元格的列号和行号,然后将其输出到文本文件。各个 awk 命令在终端中运行良好,我已经解决了其他语法问题,但输出的 .txt 仍然为空。我认为我在将 shell 变量传递给 awk 时遇到问题。
#!/bin/bash
echo Literal or regex string to find:
read string
echo File path to find string match in:
read filename
echo "Matches for $string were found in the following cells:" > results.txt
for string in filename
do
awk -v awkvar="$string" -F"," '{for(i=1;i<=NF;i++){if ($i ~ /awkvar/){print i}}}' $filename >> results.txt | echo -e "\n" >> results.txt
awk -v awkvar="$string" '/awkvar/{print NR}' $filename >> results.txt | echo -e "\n" >> results.txt
done
问题已解决
我重写了脚本如下:
#!/bin/bash
# Prompt for input: 1. enter file name or path that you want searched; 2. enter the literal or regex string
echo File name or path to find matches in:
read file
echo Literal or regex string to find:
read string
# Define variable and test if any matches are to be found; if not, notification is sent to terminal, but if matches exist, their row numbers (as summary rows) and individual column numbers will be output to a .txt file in the home directory. NB: you need to escape minus symbol with brackets, [-], so that it's not confused with an invalid grep option!
matchesFound=$(cat $file | grep -E -c "$string")
if [ $matchesFound -eq 0 ];
then
echo "No matches exist."
else
printf "Summary Row No: \n`awk -v awkvar="$string" '$0 ~ awkvar{print NR}' $file`" > results_for_$string.txt
printf "\nInstance Column No: \n`awk -v awkvar="$string" -F"," '{for(i=1;i<=NF;i++){if ($i ~ awkvar){print i}}}' $file`" >> results_for_$string.txt
fi
【问题讨论】:
标签: regex bash for-loop variables awk