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

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