dirs="$*" if [ $# = 0 ]; then dirs=.; fi; for i in $dirs; do if test -d $i; then $0 $i/* $i/.[A-Za-z]*; elif test -x $i; then print -R -n "$i "; fi; done