#!/bin/sh
#
# $Revision: 1.3 $ $Date: 2012-07-26 17:11:47-04 $
# $Source: /home/vogelke/bin/RCS/dot,v $
# $Host: sys7.com $
# $UUID: 0a2957a1-0300-3bcc-a762-cec08fd7dcf8 $
#
#< dot: list dot files.  If running saveon, don't colorize it.

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

unset BLOCK_SIZE             # throws off the results.
exec ls -ldF $opt --time-style='+%d-%b-%Y %T' .[a-zA-Z0-9]*
exit 1
