Forum Moderators: coopster & phranque
open MYFILE ">pathname"; # will erase the contents if already exists open MYFILE ">>pathname"; # won't erase the contents if already exists
file will be created with permissions 0666
Shawn