adam.nz
about
posts
projects
contact
# awk '{$1=""; print $0}' /tmp/file.txt # awk '{for (i=2; i<=NF; i++) printf $i " "; print ""}' /tmp/file.txt
Two different ways to use awk to print the entire line except the first field. The first option is simpler but leaves a leading space.