#!/bin/sh
#
# $Revision: 1.5 $ $Date: 2012-07-26 16:16:04-04 $
# $Source: /home/vogelke/bin/RCS/ll,v $
# $Host: sys7.com $
# $UUID: 2ef006da-da63-3648-a12b-92f7c6511dcd $
#
#<ll: long file listing.  If running saveon, don't colorize it.

case "$SAVEON" in
    "") opt='--color=auto' ;;
    *)  opt='' ;;
esac

unset BLOCK_SIZE             # throws off the results.
exec ls -blptF $opt --time-style='+%d-%b-%Y %T' ${1+"$@"}
