Skip to content

Commit e320a9f

Browse files
committed
edit for pub
1 parent 066d892 commit e320a9f

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

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

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

4242
```
4343

44-
* After you set your environment variables, you 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

@@ -50,8 +50,7 @@ setx FR_ENDPOINT {yourEndpoint}
5050
| Command | Action | Example |
5151
|---------|--------|---------|
5252
| **setx** </br>VARIABLE_NAME=value | Set or change the value of an environment variable| `setx FR_KEY={yourKey}`|
53-
| **setx** </br>VARIABLE_NAME= | Delete the environment variable by setting the value to an empty string.| `setx FR_KEY=` |
54-
| **set** VARIABLE_NAME | Display the value of a specific environment variable| `set FR_KEY` |
53+
| **setx** </br>VARIABLE_NAME= | Delete the environment variable by setting the value to an empty string.| `setx FR_KEY=` |</b>VARIABLE_NAME | Display the value of a specific environment variable| `set FR_KEY` |
5554
| **set**| Display all environment variables.| `set`|
5655

5756
#### [macOS](#tab/macOS)
@@ -96,7 +95,7 @@ Here are a few more helpful commands to use with environment variables:
9695
|---------|--------|---------|
9796
| **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` |
99-
| &bullet; **printenv**</br> VARIABLE_NAME</br> &bullet; **echo** </br> $VARIABLE_NAME| &bullet; 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>|
98+
| &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>|
10099
| **printenv**| Display all environment variables.| `printenv` |
101100

102101
#### [Linux](#tab/linux)
@@ -141,7 +140,7 @@ Here are a few more helpful commands to use with environment variables:
141140
|---------|--------|---------|
142141
| **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=` |
144-
| &bullet; **printenv** </br>VARIABLE_NAME</br> &bullet; **echo** </br>$VARIABLE_NAME| &bullet; 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>|
143+
| &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>|
145144
| **printenv**| Display all environment variables.|`printenv`|
146145
147146
---

0 commit comments

Comments
 (0)