echo cat:
cat Records.txt
echo ""
echo Using a digit for the second record:
record_id=$(awk 'NR==2{print $1; exit}' Records.txt)
echo $record_id
echo ""
a=2
echo a is set to $a
echo ""
echo Using a variable and single quotes:
record_id=$(awk 'NR==$a{print $1; exit}' Records.txt)
echo $record_id
echo Using a variable and double quotes:
record_id=$(awk "NR==$a{print $1; exit}" Records.txt)
echo $record_id
输出
cat:
Apples 1000 happy worms
Carrots 10 happy bunnies
Using a digit for the second record:
Carrots
a is set to 2
Using a variable and single quotes:
Using a variable and double quotes:
Carrots 10 happy bunnies
我知道使用变量需要双引号,但为什么它不再仅限于第一个字段的输出?我只想要胡萝卜这个词。
当您使用单引号时,
$a
shell 不会扩展,因此 awk 会看到 literalNR=$a
。由于awk 变量a
未初始化,这相当于NR=$0
将当前记录号与记录值进行比较。当您使用双引号时,两者
$a
和$1
都由外壳扩展,并且表达式变为NR==2{print ; exit}
因为$1
在您的交互式外壳中为空 - 这就是它打印整个记录的原因。这里有几种方法可以将 shell 变量值传递给 awk,同时避免 shell 扩展的棘手问题:
或者
(您可以使用双引号来允许扩展,
$a
然后$1
通过额外的引用/转义 ex 来防止扩展。awk "NR==$a{print \$1; exit}" Records.txt
但我建议不要这样做。)您可以简单地使用双引号并将
$
in print 语句转义为 bash 以将其忽略为