Skip to content

Commit 9a808e6

Browse files
Merge pull request #225136 from stevenmatthew/brackets
Editorial edits for consistency
2 parents 8882e97 + 754f644 commit 9a808e6

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

articles/storage/blobs/storage-quickstart-blobs-cli.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ author: stevenmatthew
77
ms.service: storage
88
ms.subservice: blobs
99
ms.topic: quickstart
10-
ms.date: 04/04/2022
10+
ms.date: 01/25/2023
1111
ms.author: shaas
1212
ms.custom: devx-track-azurecli, mode-api
1313
---
@@ -110,8 +110,8 @@ In this example, you upload a blob to the container you created in the last step
110110
az storage blob upload \
111111
--account-name <storage-account> \
112112
--container-name <container> \
113-
--name helloworld \
114-
--file helloworld \
113+
--name myFile.txt \
114+
--file myFile.txt \
115115
--auth-mode login
116116
```
117117

@@ -139,8 +139,8 @@ Use the [az storage blob download](/cli/azure/storage/blob) command to download
139139
az storage blob download \
140140
--account-name <storage-account> \
141141
--container-name <container> \
142-
--name helloworld \
143-
--file ~/destination/path/for/file \
142+
--name myFile.txt \
143+
--file <~/destination/path/for/file> \
144144
--auth-mode login
145145
```
146146

@@ -152,7 +152,7 @@ The following example uses AzCopy to upload a local file to a blob. Remember to
152152

153153
```bash
154154
azcopy login
155-
azcopy copy 'C:\myDirectory\myTextFile.txt' 'https://mystorageaccount.blob.core.windows.net/mycontainer/myTextFile.txt'
155+
azcopy copy 'C:\myDirectory\myFile.txt' 'https://mystorageaccount.blob.core.windows.net/mycontainer/myFile.txt'
156156
```
157157

158158
## Clean up resources

0 commit comments

Comments
 (0)