Move a pdf into a specified path

find $APPLCSF/out/ERP*.pdf \( -newer /tmp/startdate -a \! -newer /tmp/enddate \) -exec ls -l {} \;

for a in $(find $APPLCSF/out -name "ERP*.pdf" \( -newer /tmp/startdate -a \! -newer /tmp/enddate \) -print |sort)
do


# lp -d wuk5000216 $a
#lp -d EBS_UAT_printer $a
sleep 2
done

ERP*.pdf is my document i want to move the pdf into a specified path instead of going to printer
\\wukrpntcfp001\RPNTC_Data\Departments\Purchases. Is there any way possible

Sorry, I am confused as to what Sangeetha is asking.

The script Sangeetha posted has unix-style paths.

The path of the PDF document in Sangeetha's is a DOS / Windows path.

Replace the

lp -d ......

With

mv $a /destination_path