如何注释掉 vhosts 文件中的文本块?
如何注释掉 vhosts 文件中的文本块?
我是否必须在每一行前面添加井号/井号 (#)?
How do you comment out a block of text in the vhosts file?
Do I have to put pound/hash symbols (#) in front of EVERY line?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,您必须将井号/井号 (
#
) 放在您想要注释掉的所有行前面。没有“块评论”标签/符号。某些文本编辑器具有列模式编辑功能,这意味着您可以选择多行并同时编辑所有行中的文本。您可以使用此功能在所选行前面插入
#
符号。Yes, you will have to put pound/hash symbols (
#
) in front of ALL the lines you want commented out. There are no 'block comments' tag/symbols.Some text editors have column-mode editing, which means you can select multiple lines and edit text in all of them at the same time. You can use this feature to insert the
#
symbol in front of the lines you selected.这不是解决方案,而是解决方法。您可以将要注释的代码放在 IfDefine 块中,这样除非定义了哑变量,否则它将被忽略:
来源:https://serverfault.com/a/414428
This is not a solution but a workaround. You can put the code you want to comment inside an IfDefine block, so it will be ignored unless a dumb variable is defined:
Source: https://serverfault.com/a/414428