docs
[mirrors/Programs.git] / bash / hhgame / win.sh
CommitLineData
21c4e167
H
1#!/bin/bash
2
3clear
4cat etc/win
5
6echo You won $1 level!!!
7echo -n Enter your nick \(or type exit\): ""
8read nick
9
10if [ $nick = "exit" ]; then
11 echo You weren\'t written to list of winners... ;
12 exit;
13fi;
14
15echo $1:$nick >> var/log/winners
16echo Written to list of winners as $1:$nick!
17exit
This page took 0.239785 seconds and 4 git commands to generate.