如何在 shellscript 中使用“#”

如何在 shellscript 中使用“#”

如何在 shellscript 中使用 # 符号并防止将其以外的所有内容解释为注释?我用 Java 编写了一个 IRC 机器人,我想给出一个包含开头哈希值的频道名称。

答案1

只需引用它或者用反斜杠添加即可:

echo '# not a comment'
echo "#" not a comment
echo \# not a comment either

相关内容