我正在尝试编写一个脚本来读取我输入的国家/地区,然后显示来自该国家/地区的人员。当我用我想要的国家编写代码时它工作正常,但是当我尝试使用变量时没有任何反应。我已经工作了几个小时,所以有人可以帮助我。这是我到目前为止所做的。
echo Please choose a country
echo
read country
awk -F: -v theCountry="$country" '
BEGIN {
recordCount = 0
printf "\t\tPlayers from that country\n\n"
print theCountry
}
/theCountry/{
print $1
recordCount++
}
END {
}' playerFile
我进入国家的地方就是搞乱的地方。
答案 0 :(得分:2)
变化:
/theCountry/{
为:
$0 ~ theCountry {
并阅读http://www.gnu.org/software/gawk/manual/gawk.html#Computed-Regexps