abs2rel.pl 337 B

1234567891011121314151617
  1. #!/usr/bin/env perl
  2. #
  3. # Copyright (C) 2007 OpenWrt.org
  4. #
  5. # This is free software, licensed under the GNU General Public License v2.
  6. # See /LICENSE for more information.
  7. #
  8. # $Id$
  9. use strict;
  10. require File::Spec;
  11. my $source = shift @ARGV;
  12. my $target = shift @ARGV;
  13. my $result = File::Spec->abs2rel($source, $target);
  14. print "$result\n";