vote up 1 vote down star
1

Suppose I have a text file with data separated by whitespace into columns. I want to write a little shell script which takes as input a filename and a number N and prints out only that column. With awk I can do the following:

awk < /tmp/in '{print $2}' > /tmp/out

This code prints out the second column.

But how would one wrap that in a shell script so that a arbitrary column could be passed in argv?

flag

It turns out this problem is solved well by cut. Check out "man cut" for more details. – speciousfool Nov 19 at 9:35

2 Answers

vote up 5 vote down check
awk -v x=2 '{print $x}'
or in a shell script:
#!/bin/sh
num=$1
awk < /tmp/in -v x=$num '{print $x}' > /tmp/out
link|flag
Thanks for the edit Jonathan... – Ray Nov 26 '08 at 7:38
vote up 1 vote down
awk '{print $'$myvar'}' < /tmp/in > /tmp/out

Where $myvar is your variable column (an integer). Watch out for script injections!

link|flag
Or: awk "{print \$$myvar}" ... the advantage being fewer quotes. – Jonathan Leffler Nov 26 '08 at 7:20

Your Answer

Get an OpenID
or

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