From: Silvio Rhatto Date: Wed, 10 Feb 2021 22:33:25 +0000 (-0300) Subject: Scuttle: fix title fetching X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=167f0bfe438530e555fbcf9894d86ded3ef727af;p=scripts.git Scuttle: fix title fetching --- diff --git a/scuttle b/scuttle index 22dd3c9..cb94ae1 100755 --- a/scuttle +++ b/scuttle @@ -49,7 +49,8 @@ CALL="$CALL&tags=$TAGS" # Description if [ -z "$DESC" ]; then - DESC="`torify curl -s $URL | grep -i "" | sed -e 's|<title>\(.*\)|\1|' 2> /dev/null`" + # See http://stackoverflow.com/questions/3195851/ddg#3195895 + DESC="`torify curl -s $URL | grep -i "" | sed -n 's/.*<title>\(.*\)<\/title>.*/\1/ip;T;q' 2> /dev/null`" echo "Fetched description: $DESC" fi