All
I have some code in win32 that creates a file
using standard open file write open(NF,">>$reportlocation\\$accfilename") || die("Unable to open file: $! \n");
and then loops through some arrays and prints each line to the file printf NF ("$id,$ac,$al,$cr,$cur,$at,$igpl,$risk,$lm,$wm,$ip,");
The problem is when i try and view it on unix, i get the whole
file mixed up and i can't loop through each line and read it
is there a way to create unix friendly files in win32 .