Skip to content

Commit cc35b14

Browse files
Merge pull request #232473 from cynthn/patch-61
[Doc-a-thon] Use sed instead of nano
2 parents 86bf1b0 + 033b254 commit cc35b14

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

articles/app-service/quickstart-html.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -96,11 +96,11 @@ The page is running as an Azure App Service web app.
9696

9797
## Update and redeploy the app
9898

99-
In the Cloud Shell, type `nano index.html` to open the nano text editor. In the `<h1>` heading tag, change "Azure App Service - Sample Static HTML Site" to "Azure App Service", as shown below.
99+
In the Cloud Shell, use `sed` to change "Azure App Service - Sample Static HTML Site" to "Azure App Service".
100100

101-
![Nano index.html](media/quickstart-html/nano-index-html.png)
102-
103-
Save your changes and exit nano. Use the command `^O` to save and `^X` to exit.
101+
```bash
102+
sed -i 's/Azure App Service - Sample Static HTML Site/Azure App Service/' index.html
103+
```
104104

105105
You'll now redeploy the app with the same `az webapp up` command.
106106

0 commit comments

Comments
 (0)