Thanks to the people who helped me make this script. Now that it is complete 
I was wondering- How should I save the script to allow it to run on the Mac 
OS? Or to be able to run on a Unix machine? or is it possible to run it over 
the web on a unix server? Thanks.

--The Code--
open D_IN,  "<text.txt" or die "Not found";
open D_OUT, ">textout.txt" or die "Cannot write";

while (read D_IN, $fifty, 50) {
  print D_OUT $fifty;
        print D_OUT "\n";
        print "$fifty \n";      
  read  D_IN, $fifty, 350;  }

print "\n Complete";

Reply via email to