Comment by jimbokun

Comment by jimbokun 2 days 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 2 days 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  
    ...