Created a folder for Misc stuff and rewritten README files in english

This commit is contained in:
2013-12-15 11:14:16 +01:00
parent 259d1800fb
commit 5d42b00c10
6 changed files with 33 additions and 2 deletions

29
Misc/jack.sh Executable file
View File

@@ -0,0 +1,29 @@
#!/bin/bash
# Jack-Benny Persson
# LX13
# From the classic movie The Shining
Text=(A l l " " w o r k " " a n d " " n o " " p l a y " " m a k e s " " \
J a c k " " a " " d u l l " " b o y "." " " )
while true
do
SemiRand=`date +%S`
if [ $SemiRand -eq 10 ] || [ $SemiRand -eq 45 ]; then
printf "\n"
fi
if [ $SemiRand -eq 15 ] || [ $SemiRand -eq 35 ] || \
[ $SemiRand -eq 36 ] || [ $SemiRand -eq 37 ]; then
printf "\n\n\t"
fi
for i in "${Text[@]}"
do
sleep 0.05
printf "$i"
done
done
exit 0