From 55260940296e894dcc9d429266fcc2d3917424b8 Mon Sep 17 00:00:00 2001 From: encrypt Date: Mon, 11 Apr 2016 12:33:01 +0200 Subject: [PATCH] add --gattini flag --- immaginibuongiorno.sh | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/immaginibuongiorno.sh b/immaginibuongiorno.sh index fbbf126..7b2990a 100755 --- a/immaginibuongiorno.sh +++ b/immaginibuongiorno.sh @@ -1,5 +1,13 @@ #!/bin/bash +match=$(date +"%a" | tr '[:upper:]' '[:lower:]' | sed 's/mon/lunedi/;s/tue/martedi/;s/wed/mercoledi/;s/thu/giovedi/;s/fri/venerdi/;s/sat/sabato/;s/sun/domenica/') -day=$(date +"%a" | tr '[:upper:]' '[:lower:]' | sed 's/mon/lunedi/;s/tue/martedi/;s/wed/mercoledi/;s/thu/giovedi/;s/fri/venerdi/;s/sat/sabato/;s/sun/domenica/') -curl -s "http://immaginibuongiorno.it" | grep "$day" | grep -oP "(?<=src=\").*(?=\")" | cut -d '"' -f 1 | shuf -n 1 +case $1 in + -g|--gattini) + match="gatto\|gattin\|micett" + ;; + *) + ;; +esac + +curl -s "http://immaginibuongiorno.it" | grep "$match" | grep -oP "(?<=src=\").*(?=\")" | cut -d '"' -f 1 | shuf -n 1