ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/COMP/BOSS/Examples/runtimeprocess
Revision: 1.1
Committed: Tue Jan 10 13:06:55 2006 UTC (19 years, 3 months ago) by elmer
Branch point for: one, MAIN
Log Message:
Initial revision

File Contents

# User Rev Content
1 elmer 1.1 #!/usr/bin/perl
2    
3     $|=1;
4     while ( <STDIN> ) {
5    
6     if($_ =~ /.*counter\s+(\d+).*/) {
7     $val = $1;
8     print "counter = $val\n";
9     }
10     }
11