如何在多行命令中插入行内注释?

如何在多行命令中插入行内注释?

我想在 bash 上执行此操作

apt install -y \
   curl \  # i'd like to insert comment here somehow
   python3

但这行不通。

答案1

一种方法:

apt install -y \
   curl `# my comment` \
   python3

相关内容