Amount of swear words in current stable/longterm Linux kernels? Here you go! :)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
xaitax@w00t:~/usr/src$ for i in $(ls -d */); do egrep -iro '(fuck|shit|crap|bastard)' ${i%%/} | wc -l | xargs echo "Total matches in ${i%%/}:"; done | |
Total matches in linux-2.6.32.61: 398 | |
Total matches in linux-2.6.34.14: 454 | |
Total matches in linux-3.10.28: 392 | |
Total matches in linux-3.11.10: 404 | |
Total matches in linux-3.12.9: 404 | |
Total matches in linux-3.13.1: 418 | |
Total matches in linux-3.2.54: 388 | |
Total matches in linux-3.4.78: 381 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment