On Sat, 13 Nov 2004 11:42:13 +0800 (CST)
Stephen Liu <[EMAIL PROTECTED]> wrote:

> Hi folks,
> 
> Instead of using following command printing output to
> a file;
> 
> $ perl AAA.pl > /pathto/name_of_file
> 
> is it possible adding "print file function" to the
> script
> 
> 1) If YES
> Please advise how to make it.
YES:
open FL,"/pathto/name_of_file
print FL WHATEVERYOUWANT
> 2) Can I add following bash syntax to the script
> user=$(whoami);
you can use:$user = `whoami`;
> now=$(date +%Y.%m.%d.%R);
> File="/tmp/satimis/comparison_${user}_${now}.txt"; 
> 
> so that the printout file will carry name of creator,
> date and time, etc.
> 
> If possible please shed me some light to re-edit the
> script.
> 
> TIA
> 
> B.R.
> Stephen Liu
> 
> -- 
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> <http://learn.perl.org/> <http://learn.perl.org/first-response>
> 
> 
> 

PS:maybe you should post your code first
-- 
Whatever you do will be insignificant,but 
the important is you do it!


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>


Reply via email to