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
Here's another awk solution, that's more flexible than the cut one and is shorter than the other awk ones. Assuming your separators are single spaces (modify the regex as necessary if they are not):
cut
awk --posix '{sub(/([^ ]* ){2}/, ""); print}'