Skip to content

Commit 805b32d

Browse files
committed
move env var delete to top of table
1 parent ecfba92 commit 805b32d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

articles/applied-ai-services/form-recognizer/how-to-guides/includes/v3-0/set-environment-variables.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,9 @@ setx FR_ENDPOINT {yourEndpoint}
4949

5050
| Command | Action | Example |
5151
|---------|--------|---------|
52-
| **setx** </br>VARIABLE_NAME=value | Set or change the value of an environment variable| `setx FR_KEY={yourKey}`|
5352
| **setx** </br>VARIABLE_NAME= | Delete the environment variable by setting the value to an empty string.| `setx FR_KEY=` |
54-
| **set** </b>VARIABLE_NAME | Display the value of a specific environment variable| `set FR_KEY` |
53+
| **setx** </br>VARIABLE_NAME=value | Set or change the value of an environment variable| `setx FR_KEY={yourKey}`|
54+
| **set** </br>VARIABLE_NAME | Display the value of a specific environment variable| `set FR_KEY` |
5555
| **set**| Display all environment variables.| `set`|
5656

5757
#### [macOS](#tab/macOS)
@@ -94,8 +94,8 @@ Here are a few more helpful commands to use with environment variables:
9494

9595
| Command | Action | Example |
9696
|---------|--------|---------|
97-
| **export** </br>VARIABLE_NAME=value | Set or change the value of a temporary environment variable ().| `export FR_KEY={yourKey}`|
9897
| **unset** </br>VARIABLE_NAME | Delete an environment variable.| `unset FR_KEY` |
98+
| **export** </br>VARIABLE_NAME=value | Set or change the value of a temporary environment variable ().| `export FR_KEY={yourKey}`|
9999
| &bullet; **printenv**</br> VARIABLE_NAME</br> &bullet; **echo** </br> $VARIABLE_NAME| Display the value of a specific environment variable (with the **echo** command, precede the variable with $).| &bullet; `printenv FR_KEY` </br>&bullet; `echo $FR_KEY`</br>|
100100
| **printenv**| Display all environment variables.| `printenv` |
101101

@@ -139,8 +139,8 @@ Here are a few more helpful commands to use with environment variables:
139139
140140
| Command | Action | Example |
141141
|---------|--------|---------|
142-
| **export** </br>VARIABLE_NAME=value | Set or change the value of a temporary environment variable (only lasts until you close the terminal session).| `export FR_KEY={yourKey}`|
143142
| **unset** </br>VARIABLE_NAME| Delete an environment variable.|`unset FR_KEY=` |
143+
| **export** </br>VARIABLE_NAME=value | Set or change the value of a temporary environment variable (only lasts until you close the terminal session).| `export FR_KEY={yourKey}`|
144144
| &bullet; **printenv** </br>VARIABLE_NAME</br> &bullet; **echo** </br>$VARIABLE_NAME| Display the value of an environment variable (with the **echo** command, precede the variable with $).| &bullet; `printenv FR_KEY` </br>&bullet; `echo $FR_KEY`</br>|
145145
| **printenv**| Display all environment variables.|`printenv`|
146146

0 commit comments

Comments
 (0)