ARGV-Abs
view release on metacpan or search on metacpan
lib/ARGV/Abs.pm view on Meta::CPAN
From one-liners (see L<perlrun>):
perl -MARGV::Abs -E "..." foo.txt bar.txt ...
From a script where B<all> arguments are expected to be filenames:
use ARG::Abs;
...
From a script that takes command-line options that should not be processed by
C<ARGV::Abs> :
# Skipping import
use ARGV::Abs ();
... extract options from @ARGV ...
# Transform paths: do import now
ARGV::Abs->import;
( run in 0.232 second using v1.01-cache-2.11-cpan-8d75d55dd25 )