In Bash command line language on Linux, this article introduces how to output all columns using the Bash awk command.
awk '{ print $0 }'
Example that doesn’t output $1: awk '{$1=""; print $0}'
linux - Using awk to print all columns from the nth to the last - Stack Overflow