User Tools

Site Tools


bash:files:count_the_lines_in_a_file

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

bash:files:count_the_lines_in_a_file [2022/06/13 10:18] – created peterbash:files:count_the_lines_in_a_file [2022/06/13 10:18] (current) peter
Line 1: Line 1:
 ====== BASH - Files - Count the lines in a file ====== ====== BASH - Files - Count the lines in a file ======
 +
 +===== Using awk =====
 +
 +<code bash>
 +awk 'END{print NR}' filename
 +</code>
 +
 +----
 +
 +===== Using wc =====
 +
 +<code bash>
 +wc -l filename
 +</code>
  
bash/files/count_the_lines_in_a_file.1655115484.txt.gz · Last modified: 2022/06/13 10:18 by peter

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki