"Shebang" lines for scripts on Patas
Here are the proper script headers for various interpreted languages on patas.
Bash
#!/bin/bash
Perl v5.10.0
#!/opt/perl/bin/perl
(Note: The distribution perl at /usr/bin/perl does not have the linguistics-specific modules installed.)
Python 2.4.x (deprecated, no longer maintained)
#!/usr/bin/python
Python 2.5.x
#!/opt/python-2.5/bin/python2.5
Python 2.6.x
#!/opt/python-2.6/bin/python2.6
Python 2.7
#!/opt/python-2.7/bin/python2.7
Python 3.0
#!/opt/python-3.0/bin/python3.0
Python 3.1
#!/opt/python-3.1/bin/python3.1
Ruby 1.8.5
#!/usr/bin/ruby
Ruby 1.9.x
#!/opt/ruby-1.9/bin/ruby
Portable Shebang
When developing scripts in other environments with final testing (and submission of homework) on patas, you may find that your development environment has the desired script binary in one place, and patas has the script binary in another. For example, you need to manually edit the shebang line on your perl scripts every time you move the perl script to patas. One way to get around this is to use
/usr/bin/env to find the path for your target script program, in this case perl.
For example, you may see the following for the location of perl 5.10 on patas and your devel machine:
patas: /opt/perl/bin/perl
jscott42@patas:~$ which perl
/opt/perl/bin/perl
jscott42@patas:~$ perl --version
This is perl, v5.10.0 built for x86_64-linux
mymachine (hani-winxp): /usr/bin/perl
jeffry@hani-winxp ~ $ which perl
/usr/bin/perl
jeffry@hani-winxp ~ $ perl --version
This is perl, v5.10. (*) built for i686-cygwin-thread-multi-64int
(with 12 registered patches, see perl -V for more detail)
Replace your shebang line in your perl scripts to read:
#!/usr/bin/env perl
and the local path for perl will automatically be substituted.
Important: If you use this technique with Condor, you
must include
getenv = true in your Condor submit script; otherwise there won't be a valid
PATH variable for /usr/bin/env to work with.
NB: to make sure you are using the same version of perl in both environments, run
which perl on each. If your devel version of perl doesn't match the version on patas, fiddle with your
PATH environment variable so the proper version is found, or create a link in your local
/bin,
/usr/bin, or
/usr/local/bin to the proper version of perl on your devel machine.
Use of
/usr/bin/env is a Good Thing in shebang lines, as it eliminates a lot of manual changes when doing cross-platform script development. And yes Virginia, it will work fine for python and ruby as well.