2deep4me
this post was submitted on 16 Jun 2022
24 points (100.0% liked)
Programmer Humor
33809 readers
211 users here now
Post funny things about programming here! (Or just rant about your favourite programming language.)
Rules:
- Posts must be relevant to programming, programmers, or computer science.
- No NSFW content.
- Jokes must be in good taste. No hate speech, bigotry, etc.
founded 5 years ago
MODERATORS
Is there a cowthink
?
🤔
bonus version
#!/bin/bash
cowfile=cow$$
echo "" > ${cowfile}
for line in "is this the real life?" \
"is this just fantasy?" \
"any way the wind blows" \
"doesn't really matter"
do
cow=`cat ${cowfile}`
echo -e "${cow}\n${line}" | cowsay -n > ${cowfile}
done
cat ${cowfile}