Advertisement
Guest User

Untitled

a guest
Sep 23rd, 2017
424
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. ===== sourcefile =====
  2.  
  3. john@example.com OK
  4. bill@example.com OK
  5. #group1@example.com OK
  6. #group2@example.com OK
  7.  
  8. ===== results =====
  9.  
  10. >postmap -q john@example.com sourcefile
  11. OK
  12. >postmap -q bill@example.com sourcefile
  13. OK
  14. >postmap -q \#group1@example.com sourcefile
  15. >postmap -q "#group1@example.com" sourcefile
  16. >postmap -q \"\#group1@example.com\" sourcefile
  17. >
  18.  
  19. ===== sourcefile2 ====
  20. "john@example.com" OK
  21. "bill@example.com" OK
  22. "#group1@example.com" OK
  23. "#group2@example.com" OK
  24.  
  25. ===== results =====
  26.  
  27. >postmap -q john@example.com sourcefile2
  28. >postmap -q bill@example.com sourcefile2
  29. >postmap -q \#group1@example.com sourcefile2
  30. >postmap -q "#group1@example.com" sourcefile2
  31. >postmap -q \"\#group1@example.com\" sourcefile2
  32. >postmap -q \"john@example.com\" sourcefile2
  33. OK
  34. >
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement