in reply to Can I write a transparent shell wrapper to start the correct build of Perl?
Not sure I entirely understand your specific requirements, but why not create a symlink in the local filesystem (I'm assuming there is a local filesystem...) which points to the respective NFS location, e.g.
ln -s /nfs/perl/5.10/centos5/bin/perl /usr/local/bin/perl
for a centos5 machine. This is a one-time administration thing, and your shebang line in the Perl script would then simply be #!/usr/local/bin/perl.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Can I write a transparent shell wrapper to start the correct build of Perl?
by Anonymous Monk on Feb 06, 2008 at 10:04 UTC | |
by almut (Canon) on Feb 06, 2008 at 13:22 UTC | |
by Anonymous Monk on Feb 06, 2008 at 17:12 UTC |