CLAWRIM Wiki

Computing Lab for Advanced Water Resources Informatics and Modeling

User Tools

Site Tools


shell_scripting

Differences

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

Link to this comparison view

Both sides previous revisionPrevious revision
shell_scripting [2023-09-21 05:10 pm] hchoshell_scripting [2023-09-21 05:15 pm] (current) hcho
Line 49: Line 49:
 </code> </code>
  
 +===== Counting non-null records in a column in a CSV file =====
 +
 +<code bash>
 +tail -n +2 merged.csv |
 +sed 's/"//g; s/,/ /g' |
 +awk '{
 +  if($57 != "")
 +    count++
 +}
 +END{
 +  print count
 +}'
 +</code>
shell_scripting.1695337829.txt.gz · Last modified: 2023-09-21 05:10 pm by hcho

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki