1
1
scripts/blink.sh

23 lines
447 B
Bash
Raw Normal View History

2011-01-19 15:59:02 +01:00
#!/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