I have to find all files whose name start with String + Number like below
ABC123_filedemo.txt
AB_451_filetxt
CD_789_demo.txt
demo_files_FD123.txt
d_files_re_SD_456.txt
I have tried this Command But Not working
export _date=`date "+%d_%m_%Y_%H_%M_%S"`
find . -type f -iname 'AB*' -exec mv {} /Demo_files"_"$_date \;