Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/usr/bin/awk -f
- /-------/ {ignore=0;next}
- /^r.*\|/ {rev=$0;next;}
- /Changed paths:/ {next;}
- /^ [AMD] \/main\/branches\/0.7.2/ {ignore=1;next;}
- {
- if (!ignore)
- {
- if(rev)
- {
- print "------------------------------------------------------------------------";
- print rev;
- rev="";
- }
- print $0;
- }
- }
Add Comment
Please, Sign In to add comment