Nov 21, 2002 #1 jmdc MIS Feb 2, 2001 19 US How can I get the print statements to write to a file? Using windows with Interix. if( $this = $that) { print "AAA\n"; print "BBB\n"; print "CCC\n"; } -Justin
How can I get the print statements to write to a file? Using windows with Interix. if( $this = $that) { print "AAA\n"; print "BBB\n"; print "CCC\n"; } -Justin
Nov 21, 2002 #2 Zas Programmer Oct 4, 2002 211 US open(DAT, ">>file.txt" print DAT "info"; for perl of course. this is a perl form... Upvote 0 Downvote
open(DAT, ">>file.txt" print DAT "info"; for perl of course. this is a perl form...