44 lines
1.1 KiB
Perl
Executable File
44 lines
1.1 KiB
Perl
Executable File
eval 'exec perl -S -w $0 ${1+"$@"}' # -*- Mode: perl -*-
|
|
if 0;
|
|
#*************************************************************************
|
|
# Copyright (c) 2009 UChicago Argonne LLC, as Operator of Argonne
|
|
# National Laboratory.
|
|
# EPICS BASE is distributed subject to a Software License Agreement found
|
|
# in file LICENSE that is included with this distribution.
|
|
#*************************************************************************
|
|
|
|
# $Id$
|
|
|
|
# Determines an absolute pathname for its argument,
|
|
# which may be either a relative or absolute path and
|
|
# might have trailing directory names that don't exist yet.
|
|
# The -e option escapes any back-slashes by doubling them.
|
|
|
|
use strict;
|
|
|
|
use FindBin qw($Bin);
|
|
use lib "$Bin/../../lib/perl";
|
|
|
|
use Getopt::Std;
|
|
use EPICS::Path;
|
|
|
|
our ($opt_e);
|
|
|
|
$Getopt::Std::OUTPUT_HELP_VERSION = 1;
|
|
getopts('e') or &HELP_MESSAGE;
|
|
&HELP_MESSAGE unless @ARGV == 1;
|
|
|
|
my $path = AbsPath(shift);
|
|
|
|
$path =~ s/\\/\\\\/gx if $opt_e;
|
|
|
|
print "$path\n";
|
|
|
|
|
|
sub HELP_MESSAGE {
|
|
print STDERR <<EOF;
|
|
Usage: fullPathName.pl [-e] filepath
|
|
EOF
|
|
exit 2;
|
|
}
|