Skip to content

Commit 43fb362

Browse files
authored
Update README.md
1 parent c9bf6ec commit 43fb362

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

README.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,15 +100,18 @@ Not all documentation is suitable for conversion to Exec Docs. Use these filters
100100
**Example of supported command:**
101101
```markdown
102102
```bash
103-
az group create --name myResourceGroup --location eastus
103+
export RESOURCE_GROUP="myResourceGroup"
104+
export LOCATION="eastus"
105+
az group create --name $RESOURCE_GROUP --location $LOCATION
104106
```
105107
```
106108

107109
**Example of unsupported command:**
108110
```markdown
109111
```bash
112+
export APP_NAME="myApp"
110113
# This requires elevated Graph API permissions and would fail
111-
az ad app create --display-name myApp --native-app
114+
az ad app create --display-name $APP_NAME --native-app
112115
```
113116
```
114117

0 commit comments

Comments
 (0)