6 lines
174 B
Bash
Executable File
6 lines
174 B
Bash
Executable File
#!/usr/bin/env sh
|
|
|
|
cow=$(echo -e "default\ncower\nmoofasa\nmoose\nmutilated\nsheep\nsmall\ntux\nvader" | shuf | head -1)
|
|
|
|
fortune | cowsay -f /usr/share/cowsay/cows/$cow.cow
|