...またはより簡単な解決策:cut -f 3- INPUTFILE
正しい区切り文字 (-d) を追加するだけで、同じ効果が得られます。
awk '{ print substr($0, index($0,$3)) }'
ここにある解決策:
http://www.linuxquestions.org/questions/linux-newbie-8/awk-print-field-to-end-and-character-count-179078/
awk '{for(i=3;i<=NF;++i)print $i}'