Nov 21, 2002 #1 jmdc MIS Joined Feb 2, 2001 Messages 19 Location 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 Joined Oct 4, 2002 Messages 211 Location 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...
Nov 21, 2002 Thread starter #3 jmdc MIS Joined Feb 2, 2001 Messages 19 Location US Thanks. -Justin Upvote 0 Downvote