Skip to content

Instantly share code, notes, and snippets.

@tatic0
Created October 15, 2012 12:05
Show Gist options
  • Save tatic0/3892125 to your computer and use it in GitHub Desktop.
Save tatic0/3892125 to your computer and use it in GitHub Desktop.
bash nyan cat
#!/bin/bash
# nyan.sh
NYAN="~=[,,_¸¸]:3"
length=0
for length in {1..100}; do
clear
printf -v line '%*s' "$length"
echo -n ${line// /_}; echo $NYAN
sleep .3
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment