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