Guest User

Untitled

a guest
Jul 16th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. sed -e 's/Tests run: \([^,]*\), Failures: \([^,]*\), Errors: \([^,]*\), Skipped: \([^,]*\)/Tests run: \1, Failures: \2, Errors: \3, Skipped: \4/g' \
  4. -e 's/\(\[WARNING\].*\)/\1/g' \
  5. -e 's/\(\[INFO\].*\)/\1/g' \
  6. -e 's/\(\[ERROR\].*\)/\1/g' \
  7. -e 's/\(BUILD\ SUCCESS.*\)/\1/g' \
  8. -e 's/\(BUILD\ FAILURE.*\)/\1/g' \
  9. -e 's/\(FAILURE.*\)/\1/g' \
  10. -e 's/\(SKIPPED.*\)/\1/g' \
  11. -e 's/\(SUCCESS.*\)/\1/g' \
  12. -e 's/\(Building.*\)/\1/g' \
  13. -e 's/\(Unpacking.*\)/\1/g' \
  14. -e 's/\(Installing.*\)/\1/g' \
  15. -e 's/\(Compiling.*\)/\1/g' \
  16. -e 's/\(Downloading.*\)/\1/g'
Add Comment
Please, Sign In to add comment