github.com/dahs81/otto@v0.2.1-0.20160126165905-6400716cf085/builtin/scriptpack/stdlib/data/execute.sh (about)

     1  # oe is shorthand for "otto_execute" and executes a command with no
     2  # output. The output is logged to the syslog. This output can be read
     3  # later but is also expected to be picked up from otto_error.
     4  oe() {
     5      "$@" 2>&1 | logger -t otto >/dev/null
     6  }