#!/bin/tcsh -f

set dir = .
if ($#argv > 0) set dir = $1
echo $dir/.[^.]* /dev/null*
# Hack so there is always some match and so existing single file doesn't
# come up alone.


# old csh version:
# set noglob
# echo {.[--]*,..?*,.[/-]*}  # Note that   for  chokes.
