Thanks, Byte.
My concern is not with the order of appearance but rather with what gets done in each case.
The one that runs at 2:39 looks for files at a certain directory level
find /home/e-smith/files/*/*/*/Recycle\ Bin -type f -atime +15 -exec rm \{\} \
but the one that runs earlier at 1:39 looks at a higher level
find /home/e-smith/files/*/*/Recycle\ Bin -type f -atime +15 -exec rm \{\} \
I would have thought that the lower level files should be cleared before the higher level ones.
But maybe it doesn't matter since the directories involved aren't being removed until 3:39 and 4:39.
I just wanted someone to confirm that it doesn't matter. (or maybe I just don't understand.

)
Thanks for taking a look.
John