in reply to Conditional Lock File

bichonfrise74:

It looks like you have most of it. All you'd need to do is pass in a different lockfile name if there's an argument vs. without one. Perhaps something like:

my $lockfile = '/tmp/my.lockfile'; $lockfile .= '.with_arg' if $fl_has_arg; check_process($lockfile) and die "Already running!";

...roboticus

When your only tool is a hammer, all problems look like your thumb.

Replies are listed 'Best First'.
Re^2: Conditional Lock File
by bichonfrise74 (Vicar) on Feb 02, 2011 at 20:35 UTC
    Thanks. Your suggestion worked perfectly.