File tree Expand file tree Collapse file tree 1 file changed +4
-8
lines changed Expand file tree Collapse file tree 1 file changed +4
-8
lines changed Original file line number Diff line number Diff line change @@ -103,15 +103,11 @@ The page is running as an Azure App Service web app.
103
103
104
104
## 4. Update and redeploy the app
105
105
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".
107
107
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
+ ```
115
111
116
112
Redeploy the app with ` az webapp up ` command.
117
113
You can’t perform that action at this time.
0 commit comments