gpt4 book ai didi

bash - Makefile 中的条件语句是否有效语法

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

我有以下生成文件

~/w/i/craft-api git:develop ❯❯❯ cat Makefile                                                                                     ⏎ ✱ ◼
test:
echo "TODO: write tests"
generate-toc:
if ! [ -x "$(command -v doctoc)" ]; then
echo "Missing doctoc. Run 'npm install doctoc -g' first"
else
doctoc ./README.md
fi

我遇到了这个错误

~/w/i/craft-api git:develop ❯❯❯ make generate-toc                                                                                  ✱ ◼
if ! [ -x "" ]; then
/bin/sh: -c: line 1: syntax error: unexpected end of file
make: *** [generate-toc] Error 2

我的 Makefile 语法/用法有什么不正确的地方?

编辑1

添加续行反斜杠似乎无法解决问题:

~/w/i/craft-api git:develop ❯❯❯ cat Makefile                                                                                     ⏎ ✱ ◼
test:
echo "TODO: write tests"
generate-toc:
if ! [ -x "$(command -v doctoc)" ]; then \
echo "Missing doctoc. Run 'npm install doctoc -g' first" \
else \
doctoc ./README.md \
fi
~/w/i/craft-api git:develop ❯❯❯ make generate-toc ✱ ◼
if ! [ -x "" ]; then \
echo "Missing doctoc. Run 'npm install doctoc -g' first" \
else \
doctoc ./README.md \
fi
/bin/sh: -c: line 1: syntax error: unexpected end of file
make: *** [generate-toc] Error 2

最佳答案

每一行都被视为一个单独的命令,并传递给不同的 shell 实例。您可以使用 \ 延续来组合所有行,以便知道将它们作为一个长字符串传递给单个 shell。这会删除换行符,因此您还需要在每个命令的末尾添加 ;

if ! [ -x "$$(command -v doctoc)" ]; then \
echo "Missing doctoc. Run 'npm install doctoc -g' first"; \
else \
doctoc ./README.md; \
fi

您还需要对 $ 进行转义,否则 make 将解释它而不是 shell。

关于bash - Makefile 中的条件语句是否有效语法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35931866/

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