对具有相同扩展名的文件集应用 AWK
我想对扩展名为“*.txt”的文件应用以下“awk”命令
awk '$4 ~ /NM/{ sum += $2 } END{ print sum }'
但是为什么这个命令不起作用:
for i in *.txt do echo awk '$4 ~ /NM/{ sum += $2 } END{ print sum }' $i; done
通常情况下,
awk '$4 ~ /NM/{ sum += $2 } END{ print sum }' file1.txt
会起作用。
I want to apply the following "awk" command on files with extension "*.txt"
awk '$4 ~ /NM/{ sum += $2 } END{ print sum }'
But why this command doesn't work:
for i in *.txt do echo awk '$4 ~ /NM/{ sum += $2 } END{ print sum }' $i; done
Normally,
awk '$4 ~ /NM/{ sum += $2 } END{ print sum }' file1.txt
would work.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
一旦你删除了 echo 它应该可以工作:
如果有任何文本文件中包含空格,它就会失败,你可以尝试这个:
打印名称的替代方法:(
基本上使 find 直接执行 awk,所以也打印输出文件名。
Once you've removed the echo it should work:
It'll fail if there are any text files with spaces in them, you could try this:
An alternative for printing out names:
(Basically make find execute awk directly, so and also print out the file names.
这将打印已处理文件的名称以及 awk 命令的输出。
This will print the names of the processed files together with the output of the
awk
command.试试这个(在 Solaris 上使用 nawk 或 /usr/xpg4/bin/awk):
Try this (use nawk or /usr/xpg4/bin/awk on Solaris):
您需要添加一个“;” :
代替
You need to add a ';' :
instead of
不需要回显。
尝试
在 *.txt 中查找 i; 做; awk '$4 ~ /NM/{ sum += $2 } END{ 打印总和 }' $i; 完成
或
for i in *.txt; do awk '$4 ~ /NM/{ sum += $2 } END{ 打印 sum }' $i; 完成
应该有效
echo is not required.
try
for i in *.txt; do; awk '$4 ~ /NM/{ sum += $2 } END{ print sum }' $i; done
or
for i in *.txt; do awk '$4 ~ /NM/{ sum += $2 } END{ print sum }' $i; done
should work
不知道是复制粘贴还是打错了。
for i in *.txt do echo awk '$4 ~ /NM/{ sum += $2 } END{ print sum }' $i; 完成
更正回显后,上面的命令将回显您的 awk 脚本和文件名,但不运行它。
Not sure if you've copy pasted or it's a typo.
for i in *.txt do echo awk '$4 ~ /NM/{ sum += $2 } END{ print sum }' $i; done
With echo corrected, the command above will echo your awk script and the filename, but not run it.