#! /bin/csh -f # # Filename: ff (FileFinder) # # Programmer: Br. David Carlson # # Date: July 3, 1994 # # This C shell program uses the Unix find command to try to locate the # file given as the command line parameter, starting at the current # directory. # if ($#argv == 1) then # There should be 1 parameter find . -name "$argv[1]" else echo "One parameter needed, the name of the file to find" endif