Comment by toolslive

Comment by toolslive 2 days ago

0 replies

ipython is the complete opposite: python but enhanced with bash. For example:

    x = !ls   # capture the output of `ls` into x
    x[0]      # the first filename  
    ...