Comment by jimbokun

Comment by jimbokun a year ago

1 reply

Maybe the ultimate would be default to bash but if you start a command with a prefix everything following is parsed and evaluated as an s-expression.

toolslive a year ago

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  
    ...