blob: dcc5165367e70db26da3366f274e31fc5eb89078 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
 | #!/usr/bin/perl
my $file = shift;
chomp(my $dir = `pwd`);
$dir =~ s/freeside\//freeside1.9\//;
#$cmd = "diff -u $file $dir/$file";
$cmd = "diff -u $dir/$file $file";
print "$cmd\n";
system($cmd);
 |