52388/awk-to-print-all-columns-from-the-nth-to-the-last
This line had worked until I had whitespace in the second field.
svn status | grep '\!' | gawk '{print $2;}' > removedProjs
the following will print all but the very first column
awk '{$1=""; print $0}' somefile
the following will print all but the two first columns
awk '{$1=$2=""; print $0}' somefile