#!/bin/bash
for name in `ls ????.??.??_*.*`
do
  echo $name ...
  stamp=$(echo $name | cut -b 1-4,6-7,9-10)"0000.00"
  touch -t $stamp $name
done


