mirror of
https://github.com/merbanan/rtl_433.git
synced 2026-04-18 08:36:54 -04:00
7 lines
129 B
Bash
Executable File
7 lines
129 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# execute command and set exit code 1 if there is output on stdout or stderr
|
|
out=$($@ 2>&1)
|
|
echo "$out"
|
|
[ -z "$out" ]
|