2020-08-12 20:08:25 -04:00
|
|
|
[ -f functions.sh ] && source functions.sh
|
|
|
|
|
2020-08-13 19:48:24 -04:00
|
|
|
fml="$(curl -Ls --connect-timeout 5 https://fmylife.com/random | grep -m1 -A1 '<a class="article-link" href="/article/.*>' | tail -1 | pandoc -f html -t plain | tr '[:space:]' ' ' | tr -cd '[:print:]')"
|
2020-08-12 20:08:25 -04:00
|
|
|
|
|
|
|
if [[ ${#fml} -gt 10 ]]; then
|
|
|
|
msg "$2" "${fml}"
|
|
|
|
else
|
|
|
|
msg "$2" "I couldn't get any fmls. fml"
|
|
|
|
fi
|