Advertisement
Guest User

Untitled

a guest
Jun 24th, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. $ cat search_file.txt
  2. This line contains kwd1.
  3. This line contains kwd2.
  4. This line contains no match.
  5. This line contains no match.
  6. This line contains kwd5.
  7.  
  8. $ cat search_kwd.sh
  9. grep kwd1 search_file.txt
  10. grep kwd2 search_file.txt
  11. grep kwd3 search_file.txt
  12. grep kwd4 search_file.txt
  13. grep kwd5 search_file.txt
  14.  
  15. $ sh search_kwd.sh
  16. This line contains kwd1.
  17. This line contains kwd2.
  18. This line contains kwd5.
  19.  
  20. $ sh search_kwd.sh
  21. This line contains kwd1.
  22. This line contains kwd2.
  23. string
  24. string
  25. This line contains kwd5.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement