作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是编程语言和东西的新手
所以我必须用 awk 反转文件中的所有行以及这些行中的所有单词并将它们打印出来。
“File1”反转:
aa bb cc
foo do as
as do foo
cc bb aa
for (i=NF; i>1; i--) printf("%s ",$i); printf("%s\n",$1)
{a[NR]=$0
}END{for(i=NR; i; i--) print a[i]}
awk -f commandFile FileToBePrinted
最佳答案
Kev 的解决方案旨在反转每个单词中的文本。您的示例输出没有显示这一点,但他的关键点是使用一个函数。
你有你需要的代码,你只需要稍微重新排列一下。
cat file1
aa bb cc
foo do as
cat commandFile
function reverse( line ) {
n=split(line, tmpLine)
for (j=n; j>0; j--) {
printf("%s ",tmpLine[j] )
}
}
# main loop
{ a[NR]=$0 }
# print reversed array
END{ for(i=NR; i>0; i--) printf( "%s\n", reverse(a[i]) ) }
awk -f commandFile file1
as do foo
cc bb aa
n=split(line, tmpLine) ... print tmpLine[j]
做了一些小改动。 , 是解析函数中输入的一行并打印出来的常用方法。我不认为 $1 变量具有从数组传入的值(您的 a[i] 值)的范围,因此我将其更改为 split..tmpLine[j]。我还发现 END 部分的 'i' 变量保留在函数
reverse
的范围内。 ,所以我把它改成了 j 来消除歧义。
#dbg print "#dbg0:line=" line > "/dev/stderr"
cat commandFile.debug
function reverse( line ) {
n=split(line, tmpLine)
#dbg print "#dbg0:line=" line
#dbg print "#dbg1:n=" n "\tj=" j "\ttmpLine[j]=" tmpLine[j]
for (j=n; j>0; j--) {
#dbg print "#dbg2:n=" n "\tj=" j "\ttempLine[j]=" tmpLine[j]
printf("%s ",tmpLine[j] )
}
}
# main loop
{ a[NR]=$0 }
# print reversed array
#dbg END{ print "AT END"; for(i=NR; i>0; i--) printf( "#dbg4:i=%d\t%s\n%s\n", i, a[i] , reverse(a[i])
) }
END{ for(i=NR; i>0; i--) printf( "%s\n", reverse(a[i]) ) }
关于awk 反转行和单词,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9891286/
我是一名优秀的程序员,十分优秀!