>> ls | wc -l In a directory that I know has 32 files, this returns count of 32. > # find . -maxdepth 1 -type f | wc -l this returned a count of 21 >set * ; echo $# returned a count of 29 Jay