Skip to content
Snippets Groups Projects
Commit b518cc2c authored by Nicolas Thill's avatar Nicolas Thill
Browse files

add an abs2rel.pl helper script (returns a path relative to another)

SVN-Revision: 8570
parent 393c8bff
No related branches found
No related tags found
No related merge requests found
#!/usr/bin/perl
#
# Copyright (C) 2007 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
# $Id$
use strict;
require File::Spec;
my $source = shift @ARGV;
my $target = shift @ARGV;
my $result = File::Spec->abs2rel($source, $target);
print "$result\n";
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment