#!/bin/csh

# This script takes input the name of the directory
# and traverses the directory path using the dorecursive script

echo "Enter the directory name:"
set dirname = `head -1`
set flist = `ls $dirname`

# dorecursive uses an environment variable
dorecursive $flist 

# dorecursivepath requires you to set the path
# to the directory containing the dorecursivepath 
# script.

#dorecursivepath $flist


