[docs] Recommend using "gsutil -m cp -r" instead of "gsutil -m rsync". (#2811)

This commit is contained in:
Max Moroz 2019-09-06 08:44:15 -07:00 committed by GitHub
parent f9c4318e38
commit bae6ad36a6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -53,12 +53,12 @@ Copy the corpus to a directory on your
machine by running the following command: machine by running the following command:
```bash ```bash
$ gsutil -m rsync gs://<bucket_path> <local_directory> $ gsutil -m cp -r gs://<bucket_path> <local_directory>
``` ```
Using the expat example above, this would be: Using the expat example above, this would be:
```bash ```bash
$ gsutil -m rsync \ $ gsutil -m cp -r \
gs://expat-corpus.clusterfuzz-external.appspot.com/libFuzzer/expat_parse_fuzzer \ gs://expat-corpus.clusterfuzz-external.appspot.com/libFuzzer/expat_parse_fuzzer \
<local_directory> <local_directory>
``` ```
@ -67,4 +67,4 @@ $ gsutil -m rsync \
We keep daily zipped backups of your corpora. These can be accessed from the 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 **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.