d65c0c2a4c57ad1c6a8490d4f07b60c2aba42085
[mirrors/Programs.git] / bash / hhgame / login.sh
1 #!/bin/bash
2 cd /home/harvie/Work/hhgame
3
4 while true; do
5
6 clear
7 cat etc/motd
8 echo 0 - Start GAME
9 echo 1 - Disconnect
10 echo
11 echo -n ~\> ""
12
13 read o
14 case $o in
15 0) ./shell.sh ;;
16 1) exit ;;
17 esac
18 done
This page took 0.272202 seconds and 5 git commands to generate.