Beefy Boxes and Bandwidth Generously Provided by pair Networks
Do you know where your variables are?
 
PerlMonks  

Re: How to Prepending a timestamp to each line of output from a command

by thanos1983 (Parson)
on Jun 07, 2017 at 12:07 UTC ( [id://1192263]=note: print w/replies, xml ) Need Help??


in reply to How to Prepending a timestamp to each line of output from a command

Hello jnarayan81,

The monks have already provided you with wisdom, but I am wondering why don't you simply call it through a subroutine. Your script works just fine as soon as you call the subroutine every instance that you want it.

Sample:

#!usr/bin/perl use say; use strict; use warnings; use POSIX q(strftime); my @abc = ("a", "b", "c", "d", "e"); sub fetchTime { return POSIX::strftime('%a, %d %b %Y %T %z', localtime); } for (@abc) {say fetchTime() . "\t$_"; sleep 1;} __END__ $ perl time.pl Wed, 07 Jun 2017 14:08:31 +0200 a Wed, 07 Jun 2017 14:08:32 +0200 b Wed, 07 Jun 2017 14:08:33 +0200 c Wed, 07 Jun 2017 14:08:34 +0200 d Wed, 07 Jun 2017 14:08:35 +0200 e

Hope this helps.

Seeking for Perl wisdom...on the process of learning...not there...yet!

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others goofing around in the Monastery: (4)
As of 2024-04-16 05:18 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found