From bae6ad36a67eecd6cb709d8cbd9b7d592dd0e81e Mon Sep 17 00:00:00 2001 From: Max Moroz Date: Fri, 6 Sep 2019 08:44:15 -0700 Subject: [PATCH] [docs] Recommend using "gsutil -m cp -r" instead of "gsutil -m rsync". (#2811) --- docs/advanced-topics/corpora.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/advanced-topics/corpora.md b/docs/advanced-topics/corpora.md index ae0255efd..4d3c70f37 100644 --- a/docs/advanced-topics/corpora.md +++ b/docs/advanced-topics/corpora.md @@ -53,12 +53,12 @@ Copy the corpus to a directory on your machine by running the following command: ```bash -$ gsutil -m rsync gs:// +$ gsutil -m cp -r gs:// ``` Using the expat example above, this would be: ```bash -$ gsutil -m rsync \ +$ gsutil -m cp -r \ gs://expat-corpus.clusterfuzz-external.appspot.com/libFuzzer/expat_parse_fuzzer \ ``` @@ -67,4 +67,4 @@ $ gsutil -m rsync \ We keep daily zipped backups of your corpora. These can be accessed from the **corpus_backup** column of the fuzzer statistics page. Downloading these can -be significantly faster than running `gsutil -m rsync` on the corpus bucket. +be significantly faster than running `gsutil -m cp -r` on the corpus bucket.