docs
[mirrors/Programs.git] / bash / hhgame / shell.sh
CommitLineData
21c4e167
H
1#!/bin/bash
2GWD=\~
3source include.sh
4
5clear
6while true; do
7
8 echo -n game@box:$GWD \$ ""
9 read gcmd
10 case "$gcmd" in
11 "game") echo You must specify game name \(man game\)... && continue ;;
12 "game stupid") ./games/stupid.sh && continue ;;
13 esac
14 shell_commands "$gcmd"
15
16done
This page took 0.253501 seconds and 4 git commands to generate.