diff options
author | arthurlutz <arthurlutz@noreply.localhost> | 2023-04-03 06:18:28 +0000 |
---|---|---|
committer | arthurlutz <arthurlutz@noreply.localhost> | 2023-04-03 06:18:28 +0000 |
commit | a2a35ac7a87fce2e38b8406f083e2350d4181b69 (patch) | |
tree | 187b1b200bd350efcb11314f490195514b3042c9 /doc/book/quick-start/_index.md | |
parent | f167310f42211ad9a4a49ddbc656c74dd1154c2d (diff) | |
download | garage-a2a35ac7a87fce2e38b8406f083e2350d4181b69.tar.gz garage-a2a35ac7a87fce2e38b8406f083e2350d4181b69.zip |
docs(book/quickstart): adapt aws s3 commands to example
Signed-off-by: arthurlutz <arthurlutz@noreply.localhost>
Diffstat (limited to 'doc/book/quick-start/_index.md')
-rw-r--r-- | doc/book/quick-start/_index.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/book/quick-start/_index.md b/doc/book/quick-start/_index.md index ac55d2f7..f01789a3 100644 --- a/doc/book/quick-start/_index.md +++ b/doc/book/quick-start/_index.md @@ -290,13 +290,13 @@ sourcing the right file.* aws s3 ls # list objects of a bucket -aws s3 ls s3://my_files +aws s3 ls s3://nextcloud-bucket # copy from your filesystem to garage -aws s3 cp /proc/cpuinfo s3://my_files/cpuinfo.txt +aws s3 cp /proc/cpuinfo s3://nextcloud-bucket/cpuinfo.txt # copy from garage to your filesystem -aws s3 cp s3/my_files/cpuinfo.txt /tmp/cpuinfo.txt +aws s3 cp s3://nextcloud-bucket/cpuinfo.txt /tmp/cpuinfo.txt ``` Note that you can use `awscli` for more advanced operations like |