Skip to content

Instantly share code, notes, and snippets.

@ruiteix
Forked from mdub/syslog-injection.sh
Created November 29, 2021 11:20
Show Gist options
  • Save ruiteix/232613351e0aa4ad52c8e36e764730f4 to your computer and use it in GitHub Desktop.
Save ruiteix/232613351e0aa4ad52c8e36e764730f4 to your computer and use it in GitHub Desktop.
Redirect STDOUT and STDERR into syslog, using "logger", and bash process substitution
# Redirect STDOUT/STDERR into syslog
exec > >(logger -p user.info) 2> >(logger -p user.warn)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment