From 8e8487de853e7911772d0cea1e4f79fd64d6bcd9 Mon Sep 17 00:00:00 2001 From: Alex Vanin Date: Fri, 16 Jul 2021 13:16:52 +0300 Subject: [PATCH] [#165] README: Fix "Download of a file" example Signed-off-by: Alex Vanin --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index e54a4977..fbf6d315 100644 --- a/README.md +++ b/README.md @@ -404,9 +404,11 @@ $ aws s3 sync %DIRPATH s3://%BUCKET_NAME To download the file from a bucket in the NeoFS Network, execute: ``` -$ aws s3api get-object --bucket %BUCKET_NAME --key %OBJECT_KEY +$ aws s3api get-object --bucket %BUCKET_NAME --key %OBJECT_KEY %OUTFILE ``` +where %OUTFILE is a file to store object content. + #### Deletion of a file To delete the file: ```