Delete all directories listed in file

  xargs -I{} echo rm -fr "{}" <to-delete.txt
  

Be careful! Remove the „echo“ to really do it.