Skip to content

Commit a6373f0

Browse files
authored
docs: add info blocks to commands' usages in README
1 parent f09d50f commit a6373f0

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

README.md

+9-3
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,9 @@ To run envfetch, run `envfetch <COMMAND> <ARGS>` in your terminal.
3535
You can run `envfetch help` to see help message or `envfetch --version` to see program's version.
3636
### Command list
3737
#### Set
38-
Set environment variable and run process. Note that variable sets only for one run
38+
Set environment variable and run process.
39+
> [!NOTE]
40+
> Now variable sets only for one run
3941
4042
Usage:
4143
`envfetch set <KEY> <VALUE> <PROCESS>`, where:
@@ -89,7 +91,9 @@ $ envfetch get MY_VAR
8991
```
9092
It will print value of specified variable.
9193
#### Delete
92-
Delete variable and start process. Note that variable deletes only for one run
94+
Delete variable and start process.
95+
> [!NOTE]
96+
> Now variable deletes only for one run
9397
9498
Usage:
9599
`envfetch delete <KEY> <PROCESS>`, where:
@@ -105,7 +109,9 @@ $ envfetch delete MY_VAR "npm run"
105109
```
106110
It will delete variable `MY_VAR` and run `npm run` command.
107111
#### Load
108-
Load environment variables from dotenv-style file and run process. Note that variables sets only for one run
112+
Load environment variables from dotenv-style file and run process.
113+
> [!NOTE]
114+
> Now variables set only for one run
109115
110116
Usage:
111117
`envfetch load <PROCESS>`, where:

0 commit comments

Comments
 (0)