I have the following file and I need to print everything except $1 and $2 by awk
$1
$2
awk
File:
INFORMATION DATA 12 33
Although it adds an extra space at the beginning of each line compared to yael's expected output, here is a shorter and simpler awk based solution than the previously suggested ones:
awk '{$1=$2=""; print}'
or even:
awk '{$1=$2=""}1'