9 lines
91 B
Bash
9 lines
91 B
Bash
|
#! /bin/sh
|
||
|
|
||
|
nohup bash -c 'NIX_REMOTE= ./install-script.sh &>/dev/tty11' &
|
||
|
|
||
|
disown
|
||
|
|
||
|
exit
|
||
|
|