From 092cd5e8e6b4e7e38f676fe82421689cfb12e0b8 Mon Sep 17 00:00:00 2001 From: tomsmeding Date: Fri, 10 Mar 2017 18:31:09 +0100 Subject: Redirect output to client.out in startup.sh --- startup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit v1.2.3