Skip to content

Instantly share code, notes, and snippets.

@AlbinoDrought
Created March 20, 2020 18:47
Show Gist options
  • Save AlbinoDrought/82d7a9118e6ce3dc48963e30478ca4e8 to your computer and use it in GitHub Desktop.
Save AlbinoDrought/82d7a9118e6ce3dc48963e30478ca4e8 to your computer and use it in GitHub Desktop.
Random Cowsay File
#!/bin/sh
cowsay -f $(ls /usr/share/cows | grep .cow | sed s/\\.cow$// | shuf -n 1)
@AlbinoDrought
Copy link
Author

I recommend

fortune | cowsay -f $(ls /usr/share/cows | grep .cow | sed s/\\.cow$// | shuf -n 1) | lolcat

in your ~/.*rc

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment