Skip to content

Instantly share code, notes, and snippets.

@verajosemanuel
Last active November 14, 2017 09:30
Show Gist options
  • Save verajosemanuel/a227ef02e3dee56516914c3f6f98489d to your computer and use it in GitHub Desktop.
Save verajosemanuel/a227ef02e3dee56516914c3f6f98489d to your computer and use it in GitHub Desktop.
line count in #bash
# first 4 digits right justified with zero padding
nl -nrz -w4 file.txt
# end of line
awk '{ print $0, NR }'
# cat (no padding)
cat -n file.txt
# grep (no padding)
grep -n "" < file.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment