Comment by jimbokun

Comment by jimbokun 10 months 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 10 months 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  
    ...