#!/bin/bash
# this one is for when we have part of a flight taking place on the following day
 # set date
d1=19990124
d2=19990124
 # create directories
mkdir ${d1}dBZe
mkdir ${d1}dopplerCorrected
mkdir ${d1}dopplerUncorrected
mkdir ${d1}nubfCorrection
mkdir ${d1}specwid

 # move files into directories
mv *${d2}*dBZe.png                ${d1}dBZe/
mv *${d2}*nubf.png                ${d1}nubfCorrection/
mv *${d2}*specwid.png             ${d1}specwid/
mv *${d2}*VelocityCorrected.png   ${d1}dopplerCorrected/
mv *${d2}*VelocityUncorrected.png ${d1}dopplerUncorrected/
