diff options
-rwxr-xr-x | startup.sh | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/startup.sh b/startup.sh new file mode 100755 index 0000000..641ab01 --- /dev/null +++ b/startup.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +echo "Enter username \n password \n" +IFS="" read username +IFS="" read -s password +printf "%s\n%s\n" "$username" "$password" | nohup ./client.js >/dev/null 2>&1 & +echo $! +disown |