$(DOC-6ren">
gpt4 book ai didi

templates - 生成文件 while 循环

转载 作者:行者123 更新时间:2023-12-01 22:44:29 27 4
gpt4 key购买 nike

即使将 SHELL 设置为 bash 而不是 sh,以下操作也不起作用:

doc:
while read line; do \
eval echo "$$line" > $(DOC) \
done < $(DOC).templ

/bin/bash: -c: line 3: syntax error: unexpected end of file

我想要做的是拥有一个带有 bash 参数推导式等($()${})的模板文件,并在以下位置“构建”它编译时间。有更好的方法吗?

最佳答案

你在完成前少了一个分号:

doc:
while read line; do \
eval echo "$$line" > $(DOC); \
done < $(DOC).templ

关于templates - 生成文件 while 循环,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4355383/

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