# Don’t print first field
awk ‘{ $1=””; print}’
# Don’t print first N fields… cuz me so smarties can’t figure out this shit each single time…
awk ‘{ $1=$2=””; print}’
# Don’t print first field
awk ‘{ $1=””; print}’
# Don’t print first N fields… cuz me so smarties can’t figure out this shit each single time…
awk ‘{ $1=$2=””; print}’