#!/bin/bash
for ((i=1;i<200;i++));do
dir=`date -d "-$i days" +%Y%m%d`
mtime=`date -d "-$i days" +%Y%m%d%H%M`
mkdir $dir
touch -t $mtime $dir
done