Blogger now allows you to force all http access to redirect to https access. But if you have a lot of blogs how do you check which (historical) ones need to have this setting enabled in Settings > Basic? Wget to the rescue again. Assuming you have a list of http URLs in the file sites.
for s in $(cat sites)
do
echo -n "$s " 1>&2
wget --spider "$s" 2>&1
done | grep Location:
If the output is something like:
http://myblog.blogspot.com Location: https://myblog.blogspot.com/ [following]
that blog is fine.
The 1>&2 for the echo is so that its output isn't filtered out by the grep.
for s in $(cat sites)
do
echo -n "$s " 1>&2
wget --spider "$s" 2>&1
done | grep Location:
If the output is something like:
http://myblog.blogspot.com Location: https://myblog.blogspot.com/ [following]
that blog is fine.
The 1>&2 for the echo is so that its output isn't filtered out by the grep.
No comments:
Post a Comment