Skip to content

Instantly share code, notes, and snippets.

@lfuelling
Created July 13, 2019 11:33
Show Gist options
  • Select an option

  • Save lfuelling/6847f11f1377b0864c596f45c560e2b5 to your computer and use it in GitHub Desktop.

Select an option

Save lfuelling/6847f11f1377b0864c596f45c560e2b5 to your computer and use it in GitHub Desktop.
See all the available cows on your system!
#!/bin/bash
cowsay -l | xargs -n 1 | tail -n +5 | while read line; do cowsay -f $line $line && sleep 1; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment