Skip to content

Commit 0b4cbe3

Browse files
committed
update README
1 parent d03706a commit 0b4cbe3

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

README.rst

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -55,10 +55,10 @@ This command copies file(s) or folder(s). See examples below::
5555
strato cp s3://my-bucket/source_folder/*.zip /target_folder/
5656

5757
# GCP upload
58-
strato cp -m -r --ionice file1 folder2 gs://my-bucket/target_folder/
58+
strato cp -r --ionice file1 folder2 gs://my-bucket/target_folder/
5959
# GCP download
6060
mkdir /target_folder
61-
strato cp -m gs://my-bucket/source_folder/*.zip /target_folder/
61+
strato cp gs://my-bucket/source_folder/*.zip /target_folder/
6262

6363
# Local Machine
6464
strato cp -r file1 folder2 /target_folder/
@@ -69,7 +69,7 @@ Notice that:
6969
* For Google Cloud download, you'll have to explicitly create the target folder, and then run ``strato cp`` command.
7070
* Wildcards are acceptable.
7171
* ``-r`` option is not needed for AWS, and copying folders is always recursive.
72-
* ``-m`` and ``--ionice`` options only work for Google Cloud.
72+
* ``--ionice`` option only work for Google Cloud.
7373

7474
For details on the options, try command ``strato cp -h``.
7575

@@ -83,13 +83,13 @@ See examples below::
8383
# AWS
8484
strato sync source_folder s3://my-bucket/target_folder
8585
# GCP
86-
strato sync -m --ionice source_folder gs://my-bucket/target_folder
86+
strato sync --ionice source_folder gs://my-bucket/target_folder
8787
# Local Machine
8888
strato sync source_folder target_folder
8989

9090
Notice that:
9191

92-
* ``-m`` and ``--ionice`` options only work for Google Cloud.
92+
* ``--ionice`` option only work for Google Cloud.
9393

9494
For details on the options, try command ``strato sync -h``.
9595

@@ -101,13 +101,12 @@ This command deletes file(s) or folder(s). See examples below::
101101
# AWS
102102
strato rm s3://my-bucket/file1 s3://my-bucket/folder2/
103103
# GCP
104-
strato rm -m gs://my-bucket/file1 gs://my-bucket/folder2 gs://my-bucket/folder3/*.zip
104+
strato rm gs://my-bucket/file1 gs://my-bucket/folder2 gs://my-bucket/folder3/*.zip
105105
# Local Machine
106106
strato rm file1 folder2
107107

108108
Notice that:
109109

110-
* ``-m`` option only works for Google Cloud.
111110
* For AWS backend, wildcards are not yet accepted.
112111

113112
For details on the options, try command ``strato rm -h``.

0 commit comments

Comments
 (0)