Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Too cumbersome:

awk '{print " "$4" "$5" "$6" "$7" "$8" "$9" "$10" "$11" "$12" "$13}' things
share|improve this question
11  
Is there any reason you can't just use cut -f3-? – Jefromi Apr 13 '10 at 0:38

5 Answers

up vote 35 down vote accepted
 awk '{for(i=1;i<8;i++) $i="";print}' file
share|improve this answer
2  
+1 every now and then, newcomers surprise me! Great look out of the box! Elegant, thank you. – hhh Aug 23 '11 at 18:47
2  
Dang, amazing posts like this make me have to login to +1 :/ – Rixius Nov 28 '12 at 7:44
@Curt it should be i<3 or i<8 – user175386049 Jan 10 at 7:10
@user1953864 I only formatted the answer. This is jiju's answer. – Curt Jan 10 at 9:14

use cut

$ cut -f4-13 file

or if you insist on awk and $13 is the last field

$ awk '{$1=$2=$3="";print}' file

else

$ awk '{for(i=4;i<=13;i++) printf $i" "}' file
share|improve this answer
6  
probably better to use "NF" than "13" in the last example. – glenn jackman Apr 13 '10 at 14:02
1  
2 scenario that is up to OP to decide. if 13 is the last field, using NF is alright. If not, using 13 is appropriate. – ghostdog74 Apr 13 '10 at 14:07
1  
2nd needs to delete 3 copies of OFS from the start of $0. 3rd would be better with printf "%s ",$i, since you don't know whether $i might contain %s or the like. But that would print an extra space at the end. – dubiousjim Apr 19 '12 at 3:16

Try this:

awk '{ $1=""; $2=""; $3=""; print $0 }'
share|improve this answer
1  
This is nice because of how dynamic it is. You can add columns at the end and not rewrite your scripts. – MinceMan Jan 13 '12 at 17:09
echo 1 2 3 4 5| awk '{ for (i=3; i<=NF; i++) print $i }'
share|improve this answer
Or to get them on the same line, assign $3 to $1, etc. and then change NF to the right number of fields. echo 1 2 3 4 5| awk '{ for (i=3; i<=NF; i++) $(i-2)=$i; NF=NF-2; print $0 }' – larsr Apr 24 '12 at 7:48

Another way to avoid using the print statement:

awk '{$1=$2=$3=""}1' file

In awk when a condition is true print is the default action.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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