From 0092d1c5c03140f9e7e01eaa6f3aea15ca7a6b2b Mon Sep 17 00:00:00 2001 From: Zachary Vance Date: Thu, 19 Nov 2015 22:18:06 -0800 Subject: [PATCH] add backslashes to command to run --- github.html | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/github.html b/github.html index 5b2b8f3..67d7f94 100644 --- a/github.html +++ b/github.html @@ -9,7 +9,9 @@ I host the metadata for the repositories. Metadata for gists is currently unavai http://za3k.com/github/repos-<X>0000-<X+1>0000.json.gz To download all files, run
 
-for x in {0..100}; do wget "http://za3k.com/github/repos-$((x*10000))-$(((x+1)*10000)).json.gz"; done
+for x in {0..100}; do \
+  wget "http://za3k.com/github/repos-$((x*10000))-$(((x+1)*10000)).json.gz"\
+done
     
  • You can grab greatly abbreviated metadata (recommended) as JSON.
  • -- 2.47.3