Check in mimimi

This commit is contained in:
Klaus-Uwe Mitterer 2014-07-18 00:46:54 +02:00
commit 110f33bcf6

14
mimimi.sh Executable file
View file

@ -0,0 +1,14 @@
#!/bin/bash
i=0;
while true;
do for ((n=0;n<$i;n++));
do printf 'mi';
done;
printf '\n';
i=$((i+1));
done