gpt4 book ai didi

awk - awk 中的多行注释

转载 作者:行者123 更新时间:2023-12-04 03:22:31 26 4
gpt4 key购买 nike

我想知道如何在 awk 中使用多行注释。到目前为止,我一直在使用 # 来评论一行。有人可以就此指导我。谢谢你。

最佳答案

AWK 中没有多行注释,但如果需要,您可以伪造它。这是一种至少适用于 GNU AWK ( gawk ) 的技术:

#!/usr/bin/awk -f
0 {
You can use
0 to cause
a block to
not execute
or be parsed
}

{
print $2, $1, $3
if (0) {
You can use if (0)
in a similar manner
inside a block
}
sum += $4
}

0 && /pattern/ { # prepend "0 &&" to other conditions to turn off a block
print
}

能够在调试过程中使用多行注释来注释掉代码段是很好的。我不一定会将这种技术用于文档,因为可能无法保证非代码文本不会因语法错误而被解析。

它似乎也适用于 mawk .

关于awk - awk 中的多行注释,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11575210/

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