@@ -55,10 +55,10 @@ This command copies file(s) or folder(s). See examples below::
55
55
strato cp s3://my-bucket/source_folder/*.zip /target_folder/
56
56
57
57
# 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/
59
59
# GCP download
60
60
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/
62
62
63
63
# Local Machine
64
64
strato cp -r file1 folder2 /target_folder/
@@ -69,7 +69,7 @@ Notice that:
69
69
* For Google Cloud download, you'll have to explicitly create the target folder, and then run ``strato cp `` command.
70
70
* Wildcards are acceptable.
71
71
* ``-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.
73
73
74
74
For details on the options, try command ``strato cp -h ``.
75
75
@@ -83,13 +83,13 @@ See examples below::
83
83
# AWS
84
84
strato sync source_folder s3://my-bucket/target_folder
85
85
# GCP
86
- strato sync -m - -ionice source_folder gs://my-bucket/target_folder
86
+ strato sync --ionice source_folder gs://my-bucket/target_folder
87
87
# Local Machine
88
88
strato sync source_folder target_folder
89
89
90
90
Notice that:
91
91
92
- * ``-m `` and `` -- ionice `` options only work for Google Cloud.
92
+ * ``-- ionice `` option only work for Google Cloud.
93
93
94
94
For details on the options, try command ``strato sync -h ``.
95
95
@@ -101,13 +101,12 @@ This command deletes file(s) or folder(s). See examples below::
101
101
# AWS
102
102
strato rm s3://my-bucket/file1 s3://my-bucket/folder2/
103
103
# 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
105
105
# Local Machine
106
106
strato rm file1 folder2
107
107
108
108
Notice that:
109
109
110
- * ``-m `` option only works for Google Cloud.
111
110
* For AWS backend, wildcards are not yet accepted.
112
111
113
112
For details on the options, try command ``strato rm -h ``.
0 commit comments