Question about using awk to print all columns great then nth

Posted by Andy on Stack Overflow See other posts from Stack Overflow or by Andy
Published on 2010-06-02T21:13:03Z Indexed on 2010/06/02 22:14 UTC
Read the original article Hit count: 233

Filed under:
|
|

right now I have this line, and it worked until I had whitespace in the second field.

svn status | grep '\!' | gawk '{print $2;}' > removedProjs

is there a way to have awk print everything in $2 or greater? ($3, $4.. until we don't have anymore columns?)

I suppose I should add that I'm doing this in a windows environment with cygwin.

© Stack Overflow or respective owner

Related posts about linux

Related posts about awk