On 20 December 2011 20:46, Hal Ashburner <hal at ashburner.info> wrote:
>
> What's your favourite* shell** one liner?
Do things in a .bashrc count? if so:
$ function c(){ if [ "x${1}" = "x" ]; then cd; else cd "${1}"; fi; \
ls -F --color=auto; }
a