Advertisement
Guest User

Untitled

a guest
Apr 17th, 2014
35
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. ----------
  2. <At_First_Sight> <isCalled> "A.
  3. <The_Godfather> <isCalled> "A.
  4. <The_Godfather> <isCalled> "Mrr.
  5. <Night_of_the_Comet> <type> "wikicategory_Comedy_science_fiction_films".
  6.  
  7.  
  8. Required output should be -
  9. <Night_of_the_Comet> <type> "wikicategory_Comedy_science_fiction_films".
  10.  
  11. Command - ^(.+?"[^"]+.)
  12.  
  13. egrep '^[^"]*"[^"]*$' file
  14. <At_First_Sight> <isCalled> "A.
  15. <The_Godfather> <isCalled> "A.
  16. <The_Godfather> <isCalled> "Mrr.
  17.  
  18. sed -n '/^[^"]*"[^"]*$/p' file
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement