mirror of
https://https.git.savannah.gnu.org/git/bash.git
synced 2026-06-30 08:59:56 +02:00
13 lines
134 B
Bash
13 lines
134 B
Bash
(
|
|
if [ -t 1 ]; then
|
|
exec 1>>nohup.out || exec 1>>~/nohup.out
|
|
fi
|
|
if [ -t 2 ]; then
|
|
exec 2>&1
|
|
fi
|
|
|
|
trap '' SIGHUP
|
|
|
|
exec "$@"
|
|
)
|