Client Desktop mac change date to 01/01/1970 after download

I had even older files that caused sync errors, so i changed it to touch all files older than 1971:

files=$(find . -type f ! -newermt "1971-01-01")

IFS=$'\n'

for f in $files
do
touch -m $files
done