Unix:
>open(MAKE,">$dir/test.file");

Mac:
open( MAKE, ">$dir:test.file" )

better though:
use File::Spec;
my $testfile = File::Spec->catfile( $dir, "test.file" )

which is portable.


HTH
Axel.

Reply via email to