xargs

cat file.txt | tr '\n' '\0' | xargs -0 -n1  rm -f
    cat file.txt | tr '\n' '\0' | xargs -0 -n1  -p rm -f