for file in $(find out -type f); do
    echo "touching ${file}"
    touch ${file}
done

