This repository has been archived on 2024-01-22. You can view files and clone it, but cannot push or open issues or pull requests.
speedie-page/fuckcount.sh

12 lines
277 B
Bash
Raw Normal View History

2022-12-12 22:34:17 +01:00
#!/bin/sh
MAIN() {
TFCOUNT="$(find *.php | wc -l)"
for i in $TFCOUNT; do
FILE="$(find *.php | sed -n ${i},${i}p)"
grep -E "fuck|FUCK|fuk|fak|Fuck" "$FILE"
done
}
MAIN | grep -E "f|F" && printf "Many fucks given.\n" || printf "Zero fucks given.\n"