Advertisement
Guest User

Untitled

a guest
Jan 24th, 2017
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. Gerty ~/Videos/YouTube > wc -l index.txt
  2. 1333 index.txt
  3. Gerty ~/Videos/YouTube > time cat index.txt > /dev/null
  4.  
  5. real 0m0,001s
  6. user 0m0,000s
  7. sys 0m0,000s
  8. Gerty ~/Videos/YouTube > time while read l; do echo "$l"; done < index.txt > /dev/null
  9.  
  10. real 0m0,016s
  11. user 0m0,013s
  12. sys 0m0,003s
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement