in reply to Re: Locking files
in thread Locking files

I don't understand what you mean claree0. Can you show me some kind of example. thanks.

Replies are listed 'Best First'.
Re: Re: Re: Locking files
by claree0 (Hermit) on Aug 11, 2001 at 03:10 UTC
    Ras,

    Assuming that you are doing this on some sort of unix-like OS, then grepping the output of `ps ax | grep program.pl | wc -l` ought to give you the current number of running processes from that program. If 1 then it is the only instance. If 2 then another is already running, and you can exit the new instance.

    There may be a better way of doing this without making calls outside perl - I still talk 'perl baby-talk' quite a lot!

    Clare