From 4cb962f7d39bd71383913362ee3e1aed68e56ca7 Mon Sep 17 00:00:00 2001 From: Michael Hohl Date: Tue, 9 Mar 2021 20:17:18 +0100 Subject: [PATCH] ZSH-compatibility for the IPv6 launch command The IPv6-compatible launch command in the README.md uses square brackets. Square brackets are fine in `bash`, but they do have a special meaning in `zsh`. However, there is an easy way around it: wrap the URL in "". This doesn't harm `bash` but also makes the command copy&pastable in `zsh`. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3c18a2b..119e410 100644 --- a/README.md +++ b/README.md @@ -137,7 +137,7 @@ Full Test | https://browser.geekbench.com/v5/cpu/3844555 GitHub's CDN does not resolve via IPv6. You will need to run the following command to download and run the script. -`curl -s -k -g --header 'Host: raw.githubusercontent.com' https://[2a04:4e42::133]/masonr/yet-another-bench-script/master/yabs.sh | bash` +`curl -s -k -g --header 'Host: raw.githubusercontent.com' "https://[2a04:4e42::133]/masonr/yet-another-bench-script/master/yabs.sh" | bash` (2a04:4e42::133 is fastly.net's [GitHub's CDN Provider] IPv6 address)