You could do one of the following:
- Use a shebang line at the beginning of your script to point to the perl you want: "#!/home/YOU/SOMEDIR/perl/bin/perl", or
- Edit your PATH to put /home/YOU/SOMEDIR/perl/bin ahead of wherever the system perl is, then use a shebang like "#!/usr/bin/env perl", or
- Run the script directly using your own perl: /home/YOU/SOMEDIR/perl/bin/perl foo.pl
For SOMEDIR, I usually use opt.
Edit: Note, I have a symlink in ~/opt/perl pointing to ~/opt/perl-5.10.0.
Note that this isn't really a Perl question per se, but rather just a question about how to tell your shell to find the perl you want it to find.
Edit: Whoops. Re-reading your question more carefully, looks like nefigah's tip is more like what you want. In that case, you're probably looking at doing:
cd ~/bin
ln -s ../SOMEDIR/perl-5.10.0/bin/perl perl5.10
This assumes you have your own ~/bin somewhere in your PATH.
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: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.