Delete files using year

Hi All,

how can i delete files from my Unix directory on the basis of year, i have files from 2001 to till 2014, but from their, i have to delete only 2013 file.Below is my file name

rwxrwxrwx 1 guopt users  5169 Jul 12 00:30 grt592_20130712003000.SAP

Thanks
Kki

find ./ -name grt592_2013\* -exec echo rm {} \;

If that looks like the set of commands you want to run, remove the echo

rm $(vdir --time-style="+%Y" | awk '$6 == 2013 {print $NF}')