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
If the first two words don't change, probably the simplest thing would be:
awk -F 'INFORMATION DATA ' '{print $2}' t