config/scripts/random.sh
2015-06-30 15:49:16 +02:00

13 lines
136 B
Bash
Executable File

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