diff options
author | ivan <ivan> | 2010-08-07 04:10:45 +0000 |
---|---|---|
committer | ivan <ivan> | 2010-08-07 04:10:45 +0000 |
commit | 171120ce1b3245ed33956d882e06889c7cda2f87 (patch) | |
tree | 863145acacd0fb0b63cce1ec7d55ec7a23212d4a /bin/19diff | |
parent | 89da4b96c4e2fce7079be8d2729750c088f8035b (diff) |
these are useful
Diffstat (limited to 'bin/19diff')
-rwxr-xr-x | bin/19diff | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/bin/19diff b/bin/19diff new file mode 100755 index 000000000..dcc516536 --- /dev/null +++ b/bin/19diff @@ -0,0 +1,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); + |