Skip to content

Instantly share code, notes, and snippets.

@uwekamper
Last active May 29, 2018 07:29
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save uwekamper/ed321bd854f821c8aad0f5f283bb6bcc to your computer and use it in GitHub Desktop.
Save uwekamper/ed321bd854f821c8aad0f5f283bb6bcc to your computer and use it in GitHub Desktop.
Test all the cowsay 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