Beefy Boxes and Bandwidth Generously Provided by pair Networks kudra
Syntactic Confectionery Delight
 
PerlMonks  

Re: avoiding newlines when using system calls.

by BooK (Curate)
on Aug 27, 2001 at 09:42 UTC ( [id://108085]=note: print w/replies, xml ) Need Help??

This is an archived low-energy page for bots and other anonmyous visitors. Please sign up if you are a human and want to interact.


in reply to avoiding newlines when using system calls.

If you want to follow blakem advice and use the POSIX module, here is how to do it. There is no newline here, plus you don't fork an external process just to fetch the date.

use POSIX qw/ strftime /; # standard module $today = strftime("%D", localtime); # localtime in list context

You could even do it this other way, but be careful with embedded %-sign in your variables. That might bite you.

use POSIX qw/ strftime /; open trf, ">/tmp/.$handle"; print trf strftime("$handle|$crpw|$first_name|$last_name|$email_addy|0 +|%D", localtime); close trf;

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://108085]
help
Sections?
Information?
Find Nodes?
Leftovers?
    Notices?
    hippoepoptai's answer Re: how do I set a cookie and redirect was blessed by hippo!
    erzuuliAnonymous Monks are no longer allowed to use Super Search, due to an excessive use of this resource by robots.