Root/scripts/abs2rel.pl

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

Archive Download this file



interactive