I am definitely new to scripting. I have a script that processes some files and I can't figure out how to run this against all files in a directory that has many sub-directories and thousands of files. Basically I want to take this script and run it against a directory titled 2011 and have it process every file in every sub-folder.
#!/bin/bash
FILES=./userfiles/*
for f in $FILES
do
echo ""
echo ""
echo "Processing File $f ...."
echo ""
echo ""
make FILE_TYPE=user CSS_PATH=./log.css SCRIPT_PATH=./toggle.js SAXON_JAR=/opt/saxon/saxon9he.jar $f.html
echo ""
echo ""
echo "File $f.html Generated"
done