#!/bin/sh
#
# $Revision: 1.4 $ $Date: 2012-07-26 17:11:47-04 $
# $Source: /home/vogelke/bin/RCS/dh,v $
# $Host: sys7.com $
# $UUID: e31c12cd-ae81-35da-b6b5-50cc45c70708 $
#
#<dh: first few entries in a directory, sorted by time

PATH=/usr/local/bin:/bin:/usr/bin; export PATH

# "--color=auto" option doesn't work when output is piped.
exec ls -lFt --time-style='+%d-%b-%Y %T' ${1+"$@"} | head
exit 1
