13 lines
136 B
Bash
Executable File
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 $@
|
|
}
|