Tente isso. (Não testado).
destination= # assign
i=0
while read line; do
cp --parents "$line" "$destination"
((i++))
[ $i -eq 100 ] && sleep 600 && i=0
done < outfile.txt
# or: done < <(find ... and so on) # to avoid creating the temp file