Beefy Boxes and Bandwidth Generously Provided by pair Networks
good chemistry is complicated,
and a little bit messy -LW
 
PerlMonks  

Re^2: Append the timestamp before and after the data in the logfile

by Kanji (Parson)
on Dec 22, 2005 at 05:33 UTC ( [id://518480]=note: print w/replies, xml ) Need Help??


in reply to Re: Append the timestamp before and after the data in the logfile
in thread Append the timestamp before and after the data in the logfile

To save some typing, you can group the commands together in a subshell and redirect the subshell's output instead.

( date; perl test.pl; date ) > test.log

    --k.


Replies are listed 'Best First'.
Re^3: Append the timestamp before and after the data in the logfile
by blazar (Canon) on Dec 22, 2005 at 10:18 UTC
    No need to spawn a subshell:
    { date; perl test.pl; date; } > test.log
    will do. At least in bash, that is...

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://518480]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others studying the Monastery: (3)
As of 2024-03-29 06:34 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found