Skip to content

Commit 97dcea4

Browse files
Merge pull request #215485 from laujan/env-variable-table-update
move env var delete to top of table
2 parents f40b6ea + e7e9eab commit 97dcea4

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -41,17 +41,17 @@ setx FR_ENDPOINT {yourEndpoint}
4141

4242
```
4343

44-
* After you set your environment variables, you'll need to exit the shell and reopen it before the changes will be available. The value will remain modified until you change it again.
44+
* After you set your environment variables, you'll need to exit the shell, and reopen it before the changes will be available. The value will remain modified until you change it again.
4545

4646
* Restart any running programs that will read the environment variable. For example, if you're using Visual Studio or Visual Studio Code as your editor, restart before running the sample code.
4747

4848
Here are a few more helpful commands to use with environment variables:
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)