Guest User

Untitled

a guest
Jul 16th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. 1|2345|John|Smith
  2. 2|4563||Smith
  3. 3|5968||Doe
  4. 4|896|Rick|Lawson
  5. 5|889||Eddy
  6.  
  7. awk -F '|' 'length($3) { ++count } END { print count }' < input
  8.  
  9. 2
  10.  
  11. cut -d '|' -f 3 input | wc -w
  12.  
  13. cut -d '|' -f 3 data | grep -c .
Add Comment
Please, Sign In to add comment