#!/bin/sh
#<dir: long directory listing.  If running script/saveon, don't colorize it.

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

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