Remove Files from a List

You can utilize bash to delete files from a list in text file :

for i in cat filetoremove.txt ; do rm $i;done