vote up 0 vote down star

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.

flag

7 Answers

vote up 3 vote down check

Once you've removed the echo it should work:

for i in *.txt do awk '$4 ~ /NM/{ sum += $2 } END{ print sum }' $i; done

It'll fail if there are any text files with spaces in them, you could try this:

find . -name '*.txt' -print0 | xargs --null -n 1 awk '$4 ~ /NM/{ sum += $2 } END{ print sum }'

An alternative for printing out names:

find . -name '*.txt' -print -exec awk '$4 ~ /NM/{ sum += $2 } END{ print sum }' {} \;

(Basically make find execute awk directly, so and also print out the file names.

link|flag
Thanks so much. Is there a way I can print out the filename also? – neversaint Mar 9 at 10:03
vote up 3 vote down
for i in *.txt; do echo "$i"; awk '$4 ~ /NM/{ sum += $2 } END{ print sum }' "$i"; done

This will print the names of the processed files together with the output of the awk command.

link|flag
"for i in *.txt" is bad style. Won't work with spaces. – Porges Mar 9 at 14:46
In Bash the 'for i in *.txt' works correctly also with spaces ($i contains the whole space-containing filename), but you are correct that this creates a problem when passing $i as an argument to awk. I've added the needed quotes around $i now, thanks. – x-way Mar 9 at 15:13
vote up 2 vote down

Try this (use nawk or /usr/xpg4/bin/awk on Solaris):

awk 'END {
  printf "%s: %.2f\n", fn, sum
  }
FNR == 1 {
  if (fn) printf "%s: %.2f\n", fn, sum
  fn = FILENAME
  sum = 0
  }
$4 ~ /NM/ { 
  sum += $2 
  }' *.txt
link|flag
vote up 2 vote down

You need to add a ';' :

for i in *.txt; do ...

instead of

for i in *.txt do ...
link|flag
vote up 1 vote down

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

link|flag
vote up 0 vote down

What is that "ech" after the do?

link|flag
@unwind: echo - corrected. Thanks for pointing it. – neversaint Mar 9 at 9:43
That was sort of a retorical question, but I guess I understated it. As other answers point out, you don't want to to echo the awk command, you want to run it, so remove that echo. :) – unwind Mar 9 at 9:48
@unwind, the reason I use echo, because I also want to print which file being processed at the time and yield what result. – neversaint Mar 9 at 9:58
@foolishbrat: But you can't do it like that ... If you say "echo this", the shell will just print out the word "this", not execute it, too. – unwind Mar 10 at 7:04
vote up 0 vote down

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.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.