A Quick Bash Tip: View File Contents With The Line Numbers
Aug 14, 2018 · by Tim KamaninBash tip I've just discovered:
Next time when you do cat
command to view file contents, pass the -n
parameter and you'll see file source with the line numbers!
Very handy:
cat -n file.whatever