It will be alphabetical I believe. The same or ls will return probably.

try it from the command line

for i in $1/*[^~,] ; do
  echo $i
done


On Fri, 7 Jan 2000, Alan Mead wrote:

> It looks to me like the order of cron job executions in RH 'run-parts'
> directories depends how the files are read:
> 
> for i in $1/*[^~,] ; do
>         [ -d $i ] && continue
>       ...
>         if [ -x $i ]; then
>                 $i
>         fi
> done
> 
> How is this order determined and can I manipulate it?  I know I could just
> create a cron entry for the job that must run after but what I really want
> is for this job to run after all the other jobs...Also I'm curious.


-- 
To unsubscribe: mail [EMAIL PROTECTED] with "unsubscribe"
as the Subject.

Reply via email to