View Single Post
  #4 (permalink)  
Old 09-10-03, 12:17 PM
perleo perleo is offline
Coding Addict
 
Join Date: Jul 2003
Location: Ireland
Posts: 269
Thanks: 0
Thanked 0 Times in 0 Posts
or if perl is anygood to you.

open(TEXT, ">>TEXT FILE PATH") or die "Cant open: $!";
@text=<TEXT>;

print @text "Text here";

close(TEXT);
Reply With Quote