I am using AIX.
When I try to copy all the file in a folder to another folder with the following command:
cp ./00012524/*.PDF ./dummy01
The
The -t flag to cp is useful here:
-t
cp
find ./00012524 -name \*.PDF -print | xargs cp -t ./dummy01