!#/usr/bin/bash
for file in 201107*/Profile_final_storage_1.dat
do
  cat "$file" >> ~/c.txt
  echo >> ~/c.txt
done

