in reply to Re: File locking with semaphores
in thread File locking with semaphores
use strict; use warnings; use FileHandle; my $fh = new FileHandle; my $FH1 = *{$$fh}; my $fh1 = \$FH1; my $FH2 = *{$$fh}; my $fh2 = \$FH2; print "$fh1\n"; print "$fh2\n"; ############ output: GLOB(0x20043704) GLOB(0x200436f8)
|
|---|