i need access to the shell variable $$. tried this: my $file = $ENV{$}; which didn't work. i managed to do it with: my $file = `echo $$`; but i'm curious -- is there a way to access $$ with the ENV hash? pete