Skip to content

Commit f79eb6d

Browse files
authored
[Doc-a-thon] Use sed instead of nano
------- cc: @msangapu-msft
1 parent 51d1ab7 commit f79eb6d

File tree

1 file changed

+4
-8
lines changed

1 file changed

+4
-8
lines changed

articles/app-service/quickstart-html-uiex.md

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

104104
## 4. Update and redeploy the app
105105

106-
In the Cloud Shell, **type** `nano index.html` to open the nano text editor.
106+
In the Cloud Shell, use `sed` to change "Azure App Service - Sample Static HTML Site" to "Azure App Service".
107107

108-
In the `<h1>` heading tag, change "Azure App Service - Sample Static HTML Site" to "Azure App Service".
109-
110-
![Nano index.html](media/quickstart-html/nano-index-html.png)
111-
112-
**Save** your changes by using command `^O`.
113-
114-
**Exit** nano by using command `^X`.
108+
```bash
109+
sed -i 's/Azure App Service - Sample Static HTML Site/Azure App Service/' index.html
110+
```
115111

116112
Redeploy the app with `az webapp up` command.
117113

0 commit comments

Comments
 (0)