[script] add a stupid script for joke ...

This commit is contained in:
Mathieu Maret 2013-04-24 10:37:50 +02:00
parent 4da464f63c
commit 08a002145f
1 changed files with 12 additions and 0 deletions

12
scripts/random.sh Executable file
View File

@ -0,0 +1,12 @@
cd (){
RANGE=5
number=$RANDOM
let "number %= $RANGE"
if [ $number == 1 ];
then
/home/mmaret/Sources/nyancat/src/nyancat
fi
echo $@
}