Test whether file or directory do not exist
while read f; do if [[ ! -f "${f}" && ! -d "${f}" ]]; then echo "$f not found" fi done <file_paths.txt