Create run_gotty.sh
Browse files- run_gotty.sh +10 -0
run_gotty.sh
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/bin/bash
|
| 2 |
+
|
| 3 |
+
# Start gotty in the background
|
| 4 |
+
/usr/local/bin/gotty --permit-write --reconnect /bin/bash &
|
| 5 |
+
|
| 6 |
+
# Infinite loop that runs in the foreground
|
| 7 |
+
while true; do
|
| 8 |
+
echo "BiraloGaming"
|
| 9 |
+
sleep 1
|
| 10 |
+
done
|