gpt4 book ai didi

bash - Bash 中的惰性求值

转载 作者:行者123 更新时间:2023-11-29 08:49:34 24 4
gpt4 key购买 nike

是否有比以下更优雅的惰性求值方式:

pattern='$x and $y'x=1y=2eval "echo $pattern"

结果:

1 and 2

它可以工作,但是 eval "echo ..." 感觉很草率,并且在某些方面可能不安全。在 Bash 中有更好的方法来做到这一点吗?

最佳答案

您可以使用命令 envsubst来自 gettext ,例如:

$ pattern='x=$x and y=$y'
$ x=1 y=2 envsubst <<< $pattern
x=1 and y=2

关于bash - Bash 中的惰性求值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2900707/

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