Skip to content

Instantly share code, notes, and snippets.

@chinmay0301
Created January 26, 2017 08:58
Show Gist options
  • Save chinmay0301/f44d088d1382073d31d3d014a0715592 to your computer and use it in GitHub Desktop.
Save chinmay0301/f44d088d1382073d31d3d014a0715592 to your computer and use it in GitHub Desktop.
Birthday Bash!
clear
declare -a message=("H" "A" "P" "P" "Y" " " "B" "I" "R" "T" "H" "D" "A" "Y" " " "H" "A" "G" "U" "L" "U" " " "B" "A" "B" "L" "U" " " ":')")
echo -n " "
for i in "${message[@]}"
do
sleep 0.15s
echo -n "$i"
done
echo " "
@chinmay0301
Copy link
Author

Things you do for a geeky friends birthday :P

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment