blob: c75f0289b5e443f217237aa88ee9e96407fced5a (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/usr/bin/env perl
BEGIN { # set all the paths to the perl code
use File::Basename qw(dirname);
use File::Spec;
my $d = dirname(File::Spec->rel2abs($0));
require "$d/../setenv.pl";
}
exec { $ARGV[0] } @ARGV or die $!;
|