Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试在 grep 正则表达式中使用变量。我只会发布一个失败的例子,也许有人可以建议如何在运行 grep 命令时评估变量。我也试过${var}了。
${var}
$ string="test this" $ var="test" $ echo $string | grep '^$var' $
由于我的正则表达式应该匹配以“test”开头的行,它应该打印通过它回显的行。
$ echo $string test this $
您需要使用双引号。单引号防止 shell 变量被 shell 插值。您使用单引号来防止 shell 进行插值,如果您的正则表达式用作$模式的一部分,您可能必须这样做。如果您使用双引号,也可以使用反斜杠来引用a 。$
$
此外,您可能需要将变量放在花括号${var}中,以帮助将其与模式的其余部分分开。
例子:
$ string="test this" $ var="test" $ echo $string | grep "^${var}"