Would you consider changing ``` files="README.txt FONTLOG.txt OFL-FAQ.txt OFL.txt" ``` to something like ``` files=`find . -name '*.txt' -print` ``` (or use your favorite method to find all .txt files instead of just the four) ?