Ignore the first line of a delimited file.
Section: awk Scripting Patterns
Skip a header row
bash
bash
awk 'NR>1 {print $1, $2}' users.csvExplanation
Skipping headers is one of the most common awk patterns for CSV-like inputs.
Learn the surrounding workflow
Compare similar commands or jump into common fixes when this command is part of a bigger troubleshooting path.
Related commands
Same sheet · prioritizing awk Scripting Patterns
Use BEGIN and END blocks
Print headers and footers around processed output.
Print selected columns
Show the first and third whitespace-delimited fields.