commands work even with extra spaces at the beginning.

This commit is contained in:
Storm Dragon
2016-09-04 20:51:49 -04:00
parent a190c08bdf
commit 09061a7e76
2 changed files with 14 additions and 7 deletions

View File

@ -2,10 +2,12 @@
curl="$(command -v curl)"
for l in $3 ; do
if [[ "$l" =~ http://|https://|www\.* ]]; then
if [[ "$l" =~ http://|https://|www\.*.* ]]; then
pageTitle="$($curl -Ls "${l/#:/}" | grep "<title>" | html2text | tr '[:space:]' ' ')"
shortLink="${l#*://}"
shortLink="${shortLink%%/*}"
if ! [[ "$pageTitle" =~ \ + ]]; then
msg "$2" "$pageTitle at $shortLink"
fi
fi
done