File: vgrep.pl

package info (click to toggle)
primer3 2.6.1-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 142,204 kB
  • sloc: ansic: 11,150; cpp: 8,231; perl: 2,296; makefile: 318; sh: 53
file content (9 lines) | stat: -rwxr-xr-x 453 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
#!/usr/local/bin/perl

system "grep ERROR             *.vg */*.vg | grep -v 'ERROR SUMMARY: 0 errors'";
system "grep 'definitely lost' *.vg */*.vg | grep -v ' 0 bytes'";
system "grep 'possibly lost'   *.vg */*.vg | grep -v ' 0 bytes'";

system "grep ERROR             *.valg*      | grep -v 'ERROR SUMMARY: 0 errors'";
system "grep 'definitely lost' *.valg*      | grep -v ' 0 bytes'";
system "grep 'possibly lost'   *.valg*      | grep -v ' 0 bytes'";