In bash/ksh can we add timestamp to STDERR redirection?
E.g. myscript.sh 2> error.log
I want to get a timestamp written on the log too.
|
|
|
If you're talking about an up-to-date timestamp on each line, that's something you'd probably want to do in your actual script (but see below for a nifty solution if you have no power to change it). If you just want a marker date on its own line before your script starts writing, I'd use:
What you need is a trick to pipe stderr through another program that can add timestamps to each line. You could do this with a C program but there's a far more devious way using just First, create a script which will add the timestamp to each line (called
For example:
produces:
Then you need another trick that can swap stdout and stderr, this little monstrosity here:
Then it's simple to combine the two tricks by timestamping
The following transcript shows this in action:
As already mentioned, When you run the command, you actually get |
|||||||
|
|
The
|
|||
|
|
|
Here's a version that uses a
Using pax's
|
|||||||
|
|
If you want to redirect back to stdout I found you have to do this:
Not sure why I need the |
||||
|
|
Rather than writing a script to pipe to, I prefer to write the logger as a function inside the script, and then send the entirety of the process into it with brackets, like so:
|
|||
|
|
|
The program |
|||
|
|
|
I like those portable shell scripts but a little disturbed that they fork/exec date(1) for every line. Here is a quick perl one-liner to do the same more efficiently:
To use it, just feed this command input through its stdin:
|
||||
|
|
|
|||
|
|
|
This thing: nohup myscript.sh 2> >( while read line; do echo "$(date): ${line}"; done > mystd.err ) < /dev/null & Works as such but when I log out and log back in to the server, it does not work. that is mystd.err stop getting populated with stderr stream even though my process (myscript.sh here) still runs. Does someone know how to get back the lost stderr in the mystd.err file back? |
|||
|
|
|
Thought I would add my 2 cents worth..
printf "$1%*s" `expr 15 - ${#1}` outputs >> Date - Process name - Process ID - INFO - Message
|
||||
|
|