theyfightcrime - annna - Annna the nice friendly bot. | |
git clone git://bitreich.org/annna/ git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws6… | |
Log | |
Files | |
Refs | |
Tags | |
README | |
--- | |
theyfightcrime (269B) | |
--- | |
1 #!/bin/sh | |
2 | |
3 duo="$(curl -s https://theyfightcrime.org/ | grep -Eo '[^>]+They fight c… | |
4 | |
5 if test "$1"; then | |
6 duo="$(printf '%s\n' "$duo" | sed "s/He's/$1 is/g")" | |
7 fi | |
8 | |
9 if test "$2"; then | |
10 duo="$(printf '%s\n' "$duo" | sed "s/She's/$2 is/g")" | |
11 fi | |
12 | |
13 printf '%s\n' "$duo" |