gpt4 book ai didi

bash - 使用 Bash 确定 URL 是 HTTP 还是 HTTPS

转载 作者:太空宇宙 更新时间:2023-11-03 13:09:12 31 4
gpt4 key购买 nike

有没有办法在 bash 中确定 URL 是否使用 SSL?在我向 URL 发送任何其他内容之前,我想了解它是否只接受 HTTP 或 HTTPS 连接。

最佳答案

如果您有权访问 wget,则可以使用以下脚本。

#/bin/bash    
URL=google.com
if wget --spider https://$URL 2>/dev/null; then
echo "https is present"
else
echo "https not present"
fi

请注意,您需要设置 http_proxy/https_proxy。

我在 cygwin64 中测试了上面的脚本[目前还不能访问 nix 系统]

您还应该能够使用 curl 修改相同的脚本。

关于bash - 使用 Bash 确定 URL 是 HTTP 还是 HTTPS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39168736/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com