1
1
Fork 0

added a little message blink script :)

This commit is contained in:
David Starzengruber 2011-01-19 15:59:02 +01:00
parent 64909add6e
commit 37bc983be7
1 changed files with 22 additions and 0 deletions

22
blink.sh Executable file
View File

@ -0,0 +1,22 @@
#!/bin/bash
# this will let the message blink five times :-)
i=0
while [ $i != 5 ]; do
clear
sleep 0.5
echo
echo
echo " ####################################"
echo " ## ##"
echo " ## Attention: You are a dumbass ##"
echo " ## ##"
echo " ####################################"
echo
echo
sleep 0.5
let i++
done
clear