summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authornanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-04-07 20:34:01 +0000
committernanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-04-07 20:34:01 +0000
commitb28e7dfaec63c0a7f400863093b6cee106903dfa (patch)
tree0fecdddf95c6ce6ba81bd1898243abf31a26d3d9 /bin
parent914ec85da0ce040764887273eb31081dd80e32f1 (diff)
downloadATCD-b28e7dfaec63c0a7f400863093b6cee106903dfa.tar.gz
*** empty log message ***
Diffstat (limited to 'bin')
-rwxr-xr-xbin/vc_filter.pl14
1 files changed, 14 insertions, 0 deletions
diff --git a/bin/vc_filter.pl b/bin/vc_filter.pl
new file mode 100755
index 00000000000..f986cb5676a
--- /dev/null
+++ b/bin/vc_filter.pl
@@ -0,0 +1,14 @@
+# $Id$
+
+$fname = $ARGV[0];
+
+open (fp, "$fname");
+
+while ($line = <fp>)
+{
+ print $line if ($line =~/^--------------------Configuration:/ ||
+ $line =~/^[A-Z_a-z0-9.]+ - [0-9]+ error\(s\), +[0-9]+ warning\(s\)/ ||
+ $line =~/^[A-Z_a-z0-9.\\:]+\([0-9]+\) : / ||
+ $line =~/^[A-Z_a-z0-9.\\:]+\.obj : / ||
+ $line =~/^fatal error/);
+}