An easy way to redirect all stdout/stderr of a given process to syslog is to do the following in a bash script: exec 1> >(logger -t MYTAG) 2>&1 Please note this only works with bash as this is a bash… Read More
Tips and Tricks for DevOps Engineers
An easy way to redirect all stdout/stderr of a given process to syslog is to do the following in a bash script: exec 1> >(logger -t MYTAG) 2>&1 Please note this only works with bash as this is a bash… Read More