Skip to content

Commit a098881

Browse files
committed
1669724, removed '$' from code blocks.
1 parent 15c8879 commit a098881

7 files changed

+12
-12
lines changed

articles/container-instances/container-instances-get-logs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ To view logs from your application code within a container, you can use the [az
1717
The following is log output from the example task-based container in [Set the command line in a container instance](container-instances-start-command.md#azure-cli-example), after having provided an invalid URL using a command-line override:
1818

1919
```azurecli
20-
$ az container logs --resource-group myResourceGroup --name mycontainer
20+
az container logs --resource-group myResourceGroup --name mycontainer
2121
```
2222

2323
```output

articles/container-instances/container-instances-monitor.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ CONTAINER_GROUP=$(az container show --resource-group <resource-group> --name <co
5252
Use the following command to get **CPU** usage metrics.
5353

5454
```azurecli
55-
$ az monitor metrics list --resource $CONTAINER_GROUP --metric CPUUsage --output table
55+
az monitor metrics list --resource $CONTAINER_GROUP --metric CPUUsage --output table
5656
```
5757

5858
```output
@@ -75,7 +75,7 @@ Timestamp Name Average
7575
Change the value of the `--metric` parameter in the command to get other [supported metrics][supported-metrics]. For example, use the following command to get **memory** usage metrics.
7676

7777
```azurecli
78-
$ az monitor metrics list --resource $CONTAINER_GROUP --metric MemoryUsage --output table
78+
az monitor metrics list --resource $CONTAINER_GROUP --metric MemoryUsage --output table
7979
```
8080

8181
```output
@@ -98,7 +98,7 @@ Timestamp Name Average
9898
For a multi-container group, the `containerName` dimension can be added to return metrics per container.
9999

100100
```azurecli
101-
$ az monitor metrics list --resource $CONTAINER_GROUP --metric MemoryUsage --dimension containerName --output table
101+
az monitor metrics list --resource $CONTAINER_GROUP --metric MemoryUsage --dimension containerName --output table
102102
```
103103

104104
```output

articles/container-instances/container-instances-tutorial-prepare-acr.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ az acr login --name <acrName>
7575
For example:
7676

7777
```azurecli
78-
$ az acr login --name mycontainerregistry082
78+
az acr login --name mycontainerregistry082
7979
```
8080

8181
The command returns `Login Succeeded` once completed:
@@ -97,7 +97,7 @@ az acr show --name <acrName> --query loginServer --output table
9797
For example, if your registry is named *mycontainerregistry082*:
9898

9999
```azurecli
100-
$ az acr show --name mycontainerregistry082 --query loginServer --output table
100+
az acr show --name mycontainerregistry082 --query loginServer --output table
101101
```
102102

103103
```output
@@ -168,7 +168,7 @@ az acr repository list --name <acrName> --output table
168168
For example:
169169

170170
```azurecli
171-
$ az acr repository list --name mycontainerregistry082 --output table
171+
az acr repository list --name mycontainerregistry082 --output table
172172
```
173173

174174
```output
@@ -186,7 +186,7 @@ az acr repository show-tags --name <acrName> --repository aci-tutorial-app --out
186186
You should see output similar to the following:
187187

188188
```console
189-
$ az acr repository show-tags --name mycontainerregistry082 --repository aci-tutorial-app --output table
189+
az acr repository show-tags --name mycontainerregistry082 --repository aci-tutorial-app --output table
190190
Result
191191
--------
192192
v1

articles/container-instances/container-instances-volume-gitrepo.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ az container create \
4444
To verify the gitRepo volume was mounted, launch a shell in the container with [az container exec][az-container-exec] and list the directory:
4545

4646
```azurecli
47-
$ az container exec --resource-group myResourceGroup --name hellogitrepo --exec-command /bin/sh
47+
az container exec --resource-group myResourceGroup --name hellogitrepo --exec-command /bin/sh
4848
```
4949

5050
```output

articles/container-instances/container-instances-volume-secret.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ az container create \
3030
The following [az container exec][az-container-exec] output shows opening a shell in the running container, listing the files within the secret volume, then displaying their contents:
3131

3232
```azurecli
33-
$ az container exec --resource-group myResourceGroup --name secret-volume-demo --exec-command "/bin/sh"
33+
az container exec --resource-group myResourceGroup --name secret-volume-demo --exec-command "/bin/sh"
3434
```
3535

3636
```output

articles/dev-spaces/quickstart-netcore.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ Use the `use-dev-spaces` command to enable Dev Spaces on your AKS cluster and fo
4444
> The `use-dev-spaces` command will also install the Azure Dev Spaces CLI if its not already installed. You cannot install the Azure Dev Spaces CLI in the Azure Cloud Shell.
4545
4646
```azurecli
47-
$ az aks use-dev-spaces -g MyResourceGroup -n MyAKS
47+
az aks use-dev-spaces -g MyResourceGroup -n MyAKS
4848
```
4949

5050
```output

articles/dev-spaces/quickstart-nodejs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Use the `use-dev-spaces` command to enable Dev Spaces on your AKS cluster and fo
3737
> The `use-dev-spaces` command will also install the Azure Dev Spaces CLI if its not already installed. You can't install the Azure Dev Spaces CLI in the Azure Cloud Shell.
3838
3939
```azurecli
40-
$ az aks use-dev-spaces -g MyResourceGroup -n MyAKS
40+
az aks use-dev-spaces -g MyResourceGroup -n MyAKS
4141
```
4242

4343
```output

0 commit comments

Comments
 (0)