summaryrefslogtreecommitdiff
path: root/startup.sh
blob: 641ab0191fd1e4830257927e12216df7d080e24f (plain)
1
2
3
4
5
6
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