将注释行回显到属性 txt 文件中

Echo commented lines into a properties txt file

有没有什么方法可以使用 echo 命令将注释数据重定向到 txt 文件?

例如:

echo #abcd1  
      abcd2
      abcd3 >> newFile.txt

我需要注释掉我重定向到文本文件的整个块。因此,执行 echo 后,newFile.txt 应该如下所示:

#abcd1
#abcd2
#abcd3

逃脱它。

$ echo \#foo > foo
$ cat foo
#foo