HackerTrans
热门最新趋势评论往期问答秀出招聘

a1a1a

no profile record

评论

a1a1a
·4年前·讨论
One of my favorite shell script snippet is prepending timestamp to every output with the help of ts command of moreutils package, meanwhile write to log file at the same time: https://unix.stackexchange.com/questions/26728/prepending-a-...

exec &> >( ts '[%Y-%m-%d.%H:%M:%S] ' | tee ${LOGFILENAME} )