Experimente annotate-output
. Ele fornece registros de data e hora para STDIN , STDOUT e STDERR .
Um exemplo, use wc
para fazer uma contagem de linha de uma substituição de processo bash
, (uma linha) e um arquivo inexistente:
annotate-output wc -l <(echo foo) nosuchfile
Saída:
10:17:45 I: Started wc -l /dev/fd/63 nosuchfile
10:17:45 O: 1 /dev/fd/63
10:17:45 E: wc: nosuchfile: No such file or directory
10:17:45 O: 1 total
10:17:45 I: Finished with exitcode 1