summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xstartup.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/startup.sh b/startup.sh
index 641ab01..40c271d 100755
--- a/startup.sh
+++ b/startup.sh
@@ -2,6 +2,6 @@
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 &
+printf "%s\n%s\n" "$username" "$password" | nohup ./client.js >client.out 2>&1 &
echo $!
disown