Skip to content

Commit 35a7630

Browse files
committed
Just some minor fixes
1 parent 37bd6f6 commit 35a7630

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

articles/storage/common/storage-use-azcopy-v10.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -151,23 +151,23 @@ You can avoid these issues by obtaining a version-specific link to AzCopy. That
151151

152152
To obtain the link, run this command:
153153

154-
**Linux**
154+
### Linux
155155

156156
```
157157
curl -v https://aka.ms/downloadazcopy-v10-linux
158158
```
159159

160-
**Windows**
160+
### Windows
161161

162162
```
163163
(curl https://aka.ms/downloadazcopy-v10-windows -MaximumRedirection 0 -ErrorAction silentlycontinue).RawContent
164164
```
165165

166166
The Url appears in the output of this command.
167167

168-
Your script can then download AzCopy by using the version-specific URL.
168+
Your script can then download AzCopy by using the version-specific URL.
169169

170-
**Linux**
170+
### Linux
171171

172172
```
173173
wget -O azcopyv10.tar https://azcopyvnext.azureedge.net/release20190301/azcopy_linux_amd64_10.0.8.tar.gz
@@ -178,7 +178,8 @@ tar -xf azcopyv10.tar --strip-components=1
178178
> [!NOTE]
179179
> `--strip-components=1` on the `tar` command removes the top-level folder that contains the version name, and instead extracts the binary directly into the current folder. This allows the script to be updated with a new version of `azcopy` by only updating the `wget` URL.
180180
181-
**Windows**
181+
### Windows
182+
182183
```
183184
Invoke-WebRequest https://azcopyvnext.azureedge.net/release20190517/azcopy_windows_amd64_10.1.2.zip -OutFile azcopyv10.zip
184185
<<Unzip here>>

0 commit comments

Comments
 (0)