Created
July 25, 2016 22:31
-
-
Save sam-artuso/aab66650d850d389f600b94c7185b79c to your computer and use it in GitHub Desktop.
Knock knock, Neo
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
foo='Follow the white rabbit.' | |
# sleep 3 | |
sudo echo > /dev/tty1 | |
for (( i=0; i<${#foo}; i++)); do | |
sudo echo -n "${foo:$i:1}" > /dev/tty1; sleep .1 | |
done; | |
sudo echo > /dev/tty1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment