gpt4 book ai didi

bash - 如何防止在 make/shell 中评估字符串?

转载 作者:行者123 更新时间:2023-11-29 09:12:45 24 4
gpt4 key购买 nike

我有这个生成文件:

echo:
echo "PASS=$(PASS)"

我调用的是:

PASS='MYPA$$' make

这告诉我:

echo "PASS=MYPA$"
PASS=MYPA$

有人正在评估 $$ -> $

这是 shell 吗?输入值时不是,因为我使用单引号,阻止 shell 对其求值。

也许 make 调用的 shell 正在做这个......

或者它可能是 make 本身?

如何避免?

最佳答案

关于制作变量

最好将make 变量视为,而不是常规变量(实际上在某些版本的make 中,变量称为宏).原因是,每次引用变量时,it is expanded .

文档中的示例说明了标准 recursively expanded variables行为:

foo = $(bar)
bar = $(ugh)
ugh = Huh?

all:
echo $(foo)

# echoes: Huh?
# `$(foo)' expands to `$(bar)' which expands to `$(ugh)' which finally expands to `Huh?'

如果您使用 GNU make,避免进一步扩展的一种方法是使用 simply expanded variables :

Simply expanded variables are defined by lines using := (see section Setting Variables). The value of a simply expanded variable is scanned once and for all, expanding any references to other variables and functions, when the variable is defined. The actual value of the simply expanded variable is the result of expanding the text that you write. It does not contain any references to other variables; it contains their values as of the time this variable was defined.

虽然简单扩展变量在大多数编程语言中表现得更像变量,但它们的单独使用并不能解决这里环境变量扩展的问题,因为即使是第一个引用 var := $(PASS)将从 PASS 环境变量扩展 $$

避免环境变量的扩展

我们可以使用 shell make 中的函数在 shell 中读取我们的环境变量(而不是在 make 中扩展它):

expanded := $(shell echo "$$PASS")

test:
echo 'PASS=$(expanded)'
echo "PASS=$$PASS"

shell函数将在shell中执行echo "$PASS"($$扩展为$通过 make 当函数执行时),结果(你的 shell 变量 PASS 的值)将被存储在 make 变量 展开。此变量现在可以在 make 的其他地方自由使用,无需进一步扩展。

make 对结果所做的唯一处理是,在将其替换为周围的文本之前,将每个换行符或回车/换行符对转换为单个空格。它还会删除尾随(回车和)换行符,如果它是结果中的最后一件事。

上面的例子说明了如何使用make变量expanded和环境变量PASS 在您的 Makefile 脚本中:

$ PASS='MYPA$$' make
echo 'PASS=MYPA$$'
PASS=MYPA$$
echo "PASS=$PASS"
PASS=MYPA$$

关于bash - 如何防止在 make/shell 中评估字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46448670/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com