<br><br><div class="gmail_quote">On Fri, Jan 7, 2011 at 8:55 PM, Chris Rebert <span dir="ltr"><<a href="mailto:clp2@rebertia.com">clp2@rebertia.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
On Fri, Jan 7, 2011 at 9:46 PM, Garland Fulton <<a href="mailto:stackslip@gmail.com">stackslip@gmail.com</a>> wrote:<br>
<snip><br>
>   1 #!/bin/bash/python<br>
<snip><br>
<div class="im">> What is<br>
> wrong with my shebang line?<br>
<br>
</div>Its path is invalid (unless you're using a *very* weird system).<br>
/bin/bash is the bash shell executable; bash is completely unrelated<br>
to Python. Further, /bin/bash is a file, not a directory.<br>
<br>
The shebang for Python is normally one of the following:<br>
#!/usr/bin/env python<br>
#!/usr/bin/python<br>
<div><div></div><div class="h5"><br>
Cheers,<br>
Chris<br>
--<br>
<a href="http://blog.rebertia.com" target="_blank">http://blog.rebertia.com</a><br>
</div></div></blockquote></div><div><br></div><div><br></div>Great I have learned a ton and these questions will not arise again.