Guest User

Untitled

a guest
Jul 20th, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. --
  2. are you happy
  3. --
  4. I am hungry
  5. are you
  6. --
  7. are you hungry
  8. too
  9.  
  10. --
  11. are you happy
  12. --
  13. are you hungry
  14. too
  15.  
  16. #!/usr/bin/awk -f
  17.  
  18. /--/ {
  19. start=1
  20. matching=0
  21. next
  22. }
  23.  
  24. start && $1 == search {
  25. matching=1
  26. print "--"
  27. }
  28.  
  29. matching {
  30. print
  31. }
  32.  
  33. {
  34. start=0
  35. }
  36.  
  37. ./search.awk -v search=are
Add Comment
Please, Sign In to add comment