diff --git a/immaginibuongiorno.sh b/immaginibuongiorno.sh index 7b2990a..2779edb 100755 --- a/immaginibuongiorno.sh +++ b/immaginibuongiorno.sh @@ -5,9 +5,18 @@ match=$(date +"%a" | tr '[:upper:]' '[:lower:]' | sed 's/mon/lunedi/;s/tue/marte case $1 in -g|--gattini) match="gatto\|gattin\|micett" - ;; + ;; + --caffe) + match="caffè" + ;; + --glitter) + match="glitter" + ;; + --random) + match="uploads" + ;; *) - ;; + ;; esac curl -s "http://immaginibuongiorno.it" | grep "$match" | grep -oP "(?<=src=\").*(?=\")" | cut -d '"' -f 1 | shuf -n 1