summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortomsmeding <tom.smeding@gmail.com>2017-03-10 18:31:09 +0100
committertomsmeding <tom.smeding@gmail.com>2017-03-10 18:31:09 +0100
commit092cd5e8e6b4e7e38f676fe82421689cfb12e0b8 (patch)
tree9586be9a524ad383d21a1b80273a5db60cca6f03
parent9e1d14b399ff8d93505db69de4bfca70047037ce (diff)
Redirect output to client.out in startup.sh
-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