I see more and more of this: "#!/usr/local/bash" or "#!/usr/bin/python2.2" That is not the proper way to define a shell or programming environment in a script for multiplatform use.
This is how you do it: #!/usr/bin/env python or #! /usr/bin/env bash That is what the "env" program is for. Use it! For the terminally clueless type "man env". Thanks. -- ----------------------------- The Numeric Python EM Project www.pythonemproject.com _______________________________________________ support mailing list [EMAIL PROTECTED] http://hawk.freenetproject.org/cgi-bin/mailman/listinfo/support
