Guest User

Untitled

a guest
Nov 19th, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. To filter sth out, like 'grep -v':
  2. {
  3. if (($0 !~ "fatal: Not a git") &&
  4. ($0 !~ "Nokogiri was built") &&
  5. ($0 !~ "No platform") &&
  6. ($0 !~ "No Arch") &&
  7. ($0 !~ "No encoder") &&
  8. ($0 !~ "succeeded with size") &&
  9. ($0 !~ /Found [0-9]* compatible encoders/) &&
  10. ($0 !~ "Attempting to read payload from STDIN")) {
  11. print $0
  12. }
  13. }
Add Comment
Please, Sign In to add comment