Last active
May 29, 2018 07:29
-
-
Save uwekamper/ed321bd854f821c8aad0f5f283bb6bcc to your computer and use it in GitHub Desktop.
Test all the cowsay characters
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/sh | |
for i in `cowsay -l | tail -n +2` | |
do | |
echo $i | |
cowsay -f $i "Ich bin die Kuh" | |
sleep 3 | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment