We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c9bf6ec commit 43fb362Copy full SHA for 43fb362
README.md
@@ -100,15 +100,18 @@ Not all documentation is suitable for conversion to Exec Docs. Use these filters
100
**Example of supported command:**
101
```markdown
102
```bash
103
- az group create --name myResourceGroup --location eastus
+ export RESOURCE_GROUP="myResourceGroup"
104
+ export LOCATION="eastus"
105
+ az group create --name $RESOURCE_GROUP --location $LOCATION
106
```
107
108
109
**Example of unsupported command:**
110
111
112
+ export APP_NAME="myApp"
113
# This requires elevated Graph API permissions and would fail
- az ad app create --display-name myApp --native-app
114
+ az ad app create --display-name $APP_NAME --native-app
115
116
117
0 commit comments