Skip to content

Instantly share code, notes, and snippets.

@slumos
Created January 6, 2010 00:07
Show Gist options
  • Select an option

  • Save slumos/269881 to your computer and use it in GitHub Desktop.

Select an option

Save slumos/269881 to your computer and use it in GitHub Desktop.
function l {
if [[ $# -eq 1 && -f "$1" ]] then
case "$1" in
*gz) zmore "$1" ;;
*png|*pdf) qlmanage -p "$1" >& /dev/null ;;
*) $PAGER "$1" ;;
esac
else
ls -CFL $*
fi
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment