health-advice - annna - Annna the nice friendly bot. | |
git clone git://bitreich.org/annna/ git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws6… | |
Log | |
Files | |
Refs | |
Tags | |
README | |
--- | |
health-advice (215B) | |
--- | |
1 #!/bin/sh | |
2 | |
3 healthuri="https://www.aryavaidyasala.com/" | |
4 | |
5 curl -s $healthuri \ | |
6 | xml2tsv 2>/dev/null \ | |
7 | grep marquee/b/i \ | |
8 | cut -f 4 \ | |
9 | sed 's, ,,g' \ | |
10 | sed 's,\\n,,g' \ | |
11 | sed 's,\\t,,g' \ | |
12 | shuf -n 1 | |
13 |