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.
|
feedback
|
|
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 | ||||
|
feedback
|
|
The
| |||
|
feedback
|
|
Here's a version that uses a
Using pax's
| |||||||
feedback
|
|
If you want to redirect back to stdout I found you have to do this:
Not sure why I need the | ||||
feedback
|
| |||
|
feedback
|
|
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? | |||
|
feedback
|