abs2rel.pl 330 B

12345678910111213141516
  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. use strict;
  9. require File::Spec;
  10. my $source = shift @ARGV;
  11. my $target = shift @ARGV;
  12. my $result = File::Spec->abs2rel($source, $target);
  13. print "$result\n";