Я предполагаю, files.txt
это список файлов классов, один класс на строку?
while read class
do : whatver you need with $class
done < files.txt
Если у вас более одного файла классов, используйте массив.
Не делайте все это заглавными буквами.
file_list=( files.txt other.txt ) # put several as needed
for f in "${file_list[@]}" # use proper quoting
do : processing $f # set -x for these to log to stderr
while read class
do : whatver you need with $class
done < "$f"
done