From 4ca7497c0d90e9d7a5185e7ed9d7e2c6aa344cda Mon Sep 17 00:00:00 2001 From: troydm Date: Tue, 27 Feb 2018 01:18:08 +0200 Subject: [PATCH] url fixed --- exp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/exp b/exp index 0f3566d..287363c 100755 --- a/exp +++ b/exp @@ -39,8 +39,8 @@ $cmd = decode("UTF-8", $cmd); my $content; -open(my $output, "-|:encoding(UTF-8)", "curl -s http://explainshell.com/explain?cmd=".$cmd) - or die "can't get data from http://explainshell.com $!"; +open(my $output, "-|:encoding(UTF-8)", "curl -s https://explainshell.com/explain?cmd=".$cmd) + or die "can't get data from https://explainshell.com $!"; { local $/; $content = <$output>;