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
|
2020-01-10 09:41:31 +01:00
|
|
|
lynx --dump --display_charset=utf8 http://danstonchat.com/random0.html | awk '$0~"Ajouter une quote.*Betamod" && $0!~"Score" { getline; while ($0!~"Score") { print $0; getline;}; exit }'
|
2015-09-08 02:14:15 +02:00
|
|
|
else
|
|
|
|
printf '%b' "Please install lynx package.\n"
|
|
|
|
fi
|
2014-09-26 00:19:23 +02:00
|
|
|
|
2020-01-10 09:48:12 +01:00
|
|
|
#awk : chope les lignes où…
|
|
|
|
#$0~"Ajouter une quote.*Betamod" : apparaît ce motif
|
|
|
|
#&& : ET
|
|
|
|
#$0!~"Sco" : la ligne entière ($0) ne contient pas Score
|
|
|
|
#{ : fait…
|
|
|
|
#getline; : chope la ligne suivante
|
|
|
|
#while ($0!~"Score") : tant que la ligne ne contient pas Score
|
|
|
|
#{ print $0; getline;}; : affiche la ligne entière
|
|
|
|
#exit : quitte (on veut une seule quote)
|
2014-09-26 00:19:23 +02:00
|
|
|
#}
|