; Lorna Ellis ; 3/6/08 ; change_year_ascii.pro ; This program changes the files names of ascii zip files to include ; the year. PRO change_year_ascii year = '2007' sc = 'ahead' start_doy = 1 stop_doy = 338 FOR ii = start_doy, stop_doy DO BEGIN old = sc+'_'+string(ii, format = '(I3.3)')+'.zip' new = sc+'_'+year+'_'+string(ii, format = '(I3.3)')+'.zip' command = 'mv '+old+' '+new spawn, command ENDFOR END