summaryrefslogtreecommitdiff
path: root/bin/23diff
blob: d38c848349d985fa43df23a9fc745d7aa02a17a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/perl

my $file = shift;

chomp(my $dir = `pwd`);
$dir =~ s/freeside(\/?)/freeside2.3$1/;
warn $dir;

#$cmd = "diff -u $file $dir/$file";
$cmd = "diff -u $dir/$file $file";
print "$cmd\n";
system($cmd);