The tail program can do this:
ls -lart | tail -n +2
The -n +2 means “start passing through on the second line of output”.
The tail program can do this:
ls -lart | tail -n +2
The -n +2 means “start passing through on the second line of output”.