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) ?
Would you consider changing
to something like
(or use your favorite method to find all .txt files instead of just the four) ?