in reply to Re^2: formatting STDOUT
in thread formatting STDOUT
use strict; my $system_call = `echo hello world`; my $output = scalar(localtime())." $system_call"; print STDOUT $output,"\n"; # output # Tue May 31 09:04:22 2005 hello world
If this isn't what you are looking for, please be more explicit in your posts.
lupey
|
|---|