docs
[mirrors/Programs.git] / bash / hhgame / login.sh
CommitLineData
21c4e167
H
1#!/bin/bash
2cd /home/harvie/Work/hhgame
3
4while 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
18done
This page took 0.181552 seconds and 4 git commands to generate.