#!/bin/sh
# $Id: d,v 1.1 2000/07/04 20:32:21 dmetz Exp $
# $crtd:  by  Derald Metzger  on  000703 $
# $cmnt:  dir cmd
#  This is the same functionality provided by the sh d function.
#  Its for use by csh style shells. This is easier than coding csh.

if [ -z "$*"  ]; then echo "## ls -aCF `(exec pwd)`"; ls -aCF
else echo "## ls -aCF $*"; ls -aCF "$@"; fi;
