通过 AWK 保持原始格式 POST 传递
我在使用 AWK 简单地从流中删除字段时遇到问题,如下所示:
1 int blah (void)
2 {
3 if (foo) {
4 printf ("blah\n");
5 }
6 return 0;
7 }
我使用以下代码删除第一个字段:
$ awk '{ $1=""; print }' example.out
int blah (void)
{
if (foo) {
printf ("blah\n");
}
return 0;
}
为什么会出现这种情况? 这是因为 AWK 删除了所有空格 - 这可以预防吗?
I have an issue with using AWK to simply remove a field from a stream, illustrated below:
1 int blah (void)
2 {
3 if (foo) {
4 printf ("blah\n");
5 }
6 return 0;
7 }
I use the following code to remove the first field:
$ awk '{ $1=""; print }' example.out
int blah (void)
{
if (foo) {
printf ("blah\n");
}
return 0;
}
Why is this the case? Is this because AWK removes all whitespace - can this be prevented?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
http://awk.freeshell.org/RangeOfFields
包含如何执行此操作的说明。 它还链接到 http://student.northpark.edu/pemente/awk/awktail。 txt 其中包含该问题的 3 个解决方案。 据我所知,如果分配给一个字段,则输出字段分隔符用于将所有字段连接在一起。 于是
" "+
突然被折叠成了一个空格。 但请持保留态度,我不是 awk 专家。 例如,尝试将:
分配给变量OFS
,输出中的字段之间将出现冒号而不是空格:如果您使用 g awk,那么你可以使用它的 gensub 扩展,我发现它的使用非常简单:
http://awk.freeshell.org/RangeOfFields
Contains a description how to do it. It also links to http://student.northpark.edu/pemente/awk/awktail.txt which contains 3 solutions to the problem. As far as i know, if you assign to a field, then the output field separator is used to concatenate all fields together. So
" "+
suddendly is collapsed to one space. Take it with a grain of salt though, i'm no awk expert. For example, try assigning:
to the variableOFS
, and colons instead of spaces will result in between fields in the output:If you use gawk, then you can use its
gensub
extension which i find pretty straight forward to use: