Guest User

Untitled

a guest
Nov 14th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. a.txt - 4
  2.  
  3. b.txt - 5
  4.  
  5. c.txt - 0
  6.  
  7. TEST
  8.  
  9. TEST
  10.  
  11. TEST
  12.  
  13. TEST
  14.  
  15. TEST_1
  16.  
  17. TEST_2
  18.  
  19. TEST4
  20.  
  21. grep -c "TEST" a.txt
  22.  
  23. $ echo 'test1 test2 test3' >/tmp/file1
  24. $ echo 'test1 test2 test3 test4' >/tmp/file2
  25. $ grep -o test /tmp/file* | uniq -c
  26. 3 /tmp/file1:test
  27. 4 /tmp/file2:test
Add Comment
Please, Sign In to add comment