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.
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.