2015-09-08 02:14:15 +02:00
|
|
|
#! /usr/bin/env sh
|
2014-09-26 00:19:23 +02:00
|
|
|
|
|
|
|
# Description: Get a quot from http://danstonchat.com
|
|
|
|
|
2015-09-08 02:14:15 +02:00
|
|
|
if [ $(command -v lynx) ]; then
|
|
|
|
lynx --dump --display_charset=utf8 http://danstonchat.com/random.html | awk '$4~"commentaires" && $0!~"RSS" { getline; while ($4!~"#") { print $0; getline;}; exit}'
|
|
|
|
else
|
|
|
|
printf '%b' "Please install lynx package.\n"
|
|
|
|
fi
|
2014-09-26 00:19:23 +02:00
|
|
|
|
|
|
|
#awk : chope les lignes où…
|
|
|
|
#$1~"#" : le premier terme ($1) contient un dièse
|
|
|
|
#&& : ET
|
|
|
|
#$0!~"RSS" : la ligne entière ($0) ne contient pas RSS
|
|
|
|
#{ : fait…
|
|
|
|
#getline; : chope la ligne suivante
|
|
|
|
#while ($1!~"#") : tant que le premier terme ne contient pas de dièse…
|
|
|
|
#{ print $0; getline;}; : affiche la ligne entière
|
|
|
|
#exit : quitte (on veut une seule quote)
|
|
|
|
#}
|