gpt4 book ai didi

bash - shell 脚本 : intersperse comments between multiline logical operators

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

我有一个像这样的多行条件:

command1 \
&& command2 \
&& command3

这很好,但我想在每个命令后添加注释,如下所示:

command1 \ # Comment for command 1.
&& command2 \ # Comment for command 2.
&& command3 # Comment for command 3.

但脚本由于解析错误而中断(在 Bash 和 Zsh 中)。

有没有办法在多行条件之间添加注释?

注意:我意识到我可以为每个命令创建一个函数,然后在其函数定义中为每个命令添加注释;但我想尽可能避免这种情况。

最佳答案

无需转义注释开头。您可以像这样使用内嵌注释:

pwd && # comment1
date && # comment2
tty # comment3

关于bash - shell 脚本 : intersperse comments between multiline logical operators,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38902673/

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