#!/bin/csh -f
#From C-Shell Guide by Anderson and Anderson
#usage: numfiles [directory]

echo -n Number of files/directories:
ls | wc -l
