John Salerno <[EMAIL PROTECTED]> wrote: > >Can you use IPython to do normal bash things, like installing, etc.?
Most scripts on Linux have a "hash-bang" line as their first line: #! /bin/sh When you execute that script, the system knows that it has to load sh or bash to process it, regardless of what program launched the script. The same thing works for Python scripts: #! /usr/bin/python -- - Tim Roberts, [EMAIL PROTECTED] Providenza & Boekelheide, Inc. -- http://mail.python.org/mailman/listinfo/python-list