Beefy Boxes and Bandwidth Generously Provided by pair Networks
No such thing as a small change
 
PerlMonks  

Re: avoiding newlines when using system calls.

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


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
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others surveying the Monastery: (4)
As of 2024-04-23 19:38 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found