From 2de4d35c3ebe2be263a5f2a9314caaadc07e8782 Mon Sep 17 00:00:00 2001 From: Gardouille Date: Fri, 26 Sep 2014 00:19:23 +0200 Subject: [PATCH] Add a script to get a quote from danstonchat (dtc, bashfr, ...). --- bash_quote | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100755 bash_quote diff --git a/bash_quote b/bash_quote new file mode 100755 index 0000000..692ea5c --- /dev/null +++ b/bash_quote @@ -0,0 +1,16 @@ +#! /bin/sh + +# Description: Get a quot from http://danstonchat.com + +lynx --dump --display_charset=utf8 http://danstonchat.com/random.html | awk '$1~"commentaires" && $0!~"RSS" { getline; while ($1!~"#") { print $0; getline;}; exit}' + +#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) +#}