The Easiest Way to Save and Share Code Snippets on the web

fortune cowsay

python | by: mapologo

posted: Aug, 18th 2009 | jump to bottom

import random, glob, os, os.path
 
cow = os.path.basename(random.choice(glob.glob("/usr/share/cowsay/cows/*.cow")))
 
os.system("fortune -a | cowsay -f %s " % cow)
104 views