Advertisement
Guest User

Untitled

a guest
Mar 3rd, 2017
161
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Awk 0.23 KB | None | 0 0
  1. BEGIN {
  2.    cnt_rreshta=0
  3.    cnt_fjale=0
  4. }
  5.  
  6. {
  7.     if(NR % 2 == 0) {
  8.         print
  9.         cnt_fjale += NF
  10.         cnt_rreshta++
  11.     }
  12. }
  13.  
  14. END {
  15.     print "Rreshta cift: " cnt_rreshta
  16.     print "Fjale: " cnt_fjale
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement