From e047943f35af1d7250ea4393910dce6adbdc57e2 Mon Sep 17 00:00:00 2001 From: Higgins2718 Date: Wed, 26 Apr 2017 10:03:14 -0500 Subject: [PATCH] Fixed wget error in line 49 Wget does not except -O, but it does except -o. You can see this by typing wget --h into bash. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 24d8557..b79c101 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,7 @@ wget https://github.com/deepmind/rc-data/raw/master/generate_questions.py ### Download and Extract Metadata ``` -wget https://storage.googleapis.com/deepmind-data/20150824/data.tar.gz -O - | tar -xz --strip-components=1 +wget https://storage.googleapis.com/deepmind-data/20150824/data.tar.gz -o - | tar -xz --strip-components=1 ``` The news article metadata is ~1 GB.