Subversion Repositories camp_sysinfo_client_3

Rev

Rev 57 | Rev 129 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

#! /usr/bin/env perl

use warnings;
use strict;

my @out;
my @list = qx( grep -r 'our \$VERSION' * | grep -v '.svn' | grep -v 'old/' | grep -v '~' ); 
chomp @list;
foreach my $item ( @list ) {
   $item =~ s/:/\t/;
   $item =~ s/[;']//g;
   $item =~ s/our \$VERSION = //;
   push @out, $item;
}

print join( "\n", sort @out ) . "\n"


Generated by GNU Enscript 1.6.5.90.