14 lines
113 B
Bash
Executable File
14 lines
113 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -eu
|
|
|
|
if test -t 1; then
|
|
exec 1>/dev/null
|
|
fi
|
|
|
|
if test -t 2; then
|
|
exec 2>/dev/null
|
|
fi
|
|
|
|
"${@}" &
|