This commit is contained in:
Rantanen Ville
2017-04-27 12:00:07 +03:00
commit a5ac6f0224
5 changed files with 214 additions and 0 deletions

8
bootstuff.sh Executable file
View File

@@ -0,0 +1,8 @@
#!/bin/bash
service ssh start
while true; do
MSG=$( nc -l -p 1515 127.0.0.1 < /dev/null )
[[ "$MSG" = "exit" ]] && exit
done