back to notes

Unix: Remove the fist line from a command output

command | awk 'NR>1'

command | sed -n '1!p'

command | tail -n +2


last updated august 2016