I interpret the question as : I only want to run this script if it is invoked from the symlinked folder.

Use Path::Tiny if you want to stay portable (as posted earlier).

Check -l, readlink, and Cwd::abs_path to fill your needs.

#!perl use Cwd qw( getcwd abs_path ); my ($DIR, $CMD) = $0 =~ m{^(.*)/([^/]+)$}; ! $CMD && ! -d $DIR and ($DIR, $CMD) = (getcwd, $DIR); # "." in $PATH +and script invoked without ./ -l $DIR or die "$DIR is not the symlinked folder. Running like this is + dangerous!\n"; say "Current dir : ", getcwd; say "Invoking folder: ", $DIR; say "Symlink : ", readlink $DIR; say "Abs path: : ", abs_path $DIR;
$ mkdir -p tmp/test-a $ ln -s test-a tmp/test $ ln -s tmp/test test $ vi tmp/test/test.pl -- paste above code and save $ perl test/test.pl Current dir : /home/tux Invoking folder: test Symlink : tmp/test Abs path: : /home/tux/tmp/test-a

Enjoy, Have FUN! H.Merijn

In reply to Re: Getting logical path from Perl? by Tux
in thread Getting logical path from Perl? by mathomp4

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.