summaryrefslogtreecommitdiff
path: root/client/startup.sh
diff options
context:
space:
mode:
Diffstat (limited to 'client/startup.sh')
-rwxr-xr-xclient/startup.sh9
1 files changed, 9 insertions, 0 deletions
diff --git a/client/startup.sh b/client/startup.sh
new file mode 100755
index 0000000..a9ee756
--- /dev/null
+++ b/client/startup.sh
@@ -0,0 +1,9 @@
+#!/usr/bin/env bash
+cd "$(dirname "$0")"
+
+echo "Enter username \n password \n"
+IFS="" read username
+IFS="" read -s password
+printf "%s\n%s\n" "$username" "$password" | nohup ./client.js >client.out 2>&1 &
+echo $!
+disown