Small Script to Remove a List of Directories 2011-09-22 12cat list-of-directories.txt|while read f; doif [ -e "$f" ]; then rm -rf "$f"; fi; done``` thanks unSpawn!