#!/usr/local/bin/bash

for file in */*.txt
do
   echo $file
   sed -e 's/'"PRELIMINARY DATA - do not distribute"'/'"Validated data - OK to distribute"'/' < $file > tmp1
   mv tmp1 $file
done
