Skip to content

Instantly share code, notes, and snippets.

@felixrabe
Created May 6, 2014 12:36
Show Gist options
  • Save felixrabe/8b1b04836d1f015f349c to your computer and use it in GitHub Desktop.
Save felixrabe/8b1b04836d1f015f349c to your computer and use it in GitHub Desktop.
function l()
unalias l 2> /dev/null || true
function l() {
if [[ $# = 0 ]] ; then
arg=.
else
arg=$1
fi
if [[ -d $arg ]] ; then
ls -al "$arg"
else
less "$arg"
fi
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment