docs
[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.263962 seconds and 4 git commands to generate.