#!/bin/bash destroot=/disks/themisdata/state15/CDF for probe in tha thb thc thd the do for year in 2007 2008 2009 2010 do for cdf in ${probe}_l1_state_${year}* do /bin/cp -fv ${cdf} ${destroot} done done done