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.
|
|
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. |
||
|
|
|
|
The
|
||
|
|
|
|
Here's a version that uses a
Using pax's
|
||||||
|
|
|
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 |
|||
|
|
|
|
One idea:
|
||
|
|
|
|
Write a timestamp to stderr and stdout. |
||
|
|