diff options
| author | Douglas Rumbaugh <doug@douglasrumbaugh.com> | 2021-12-20 18:57:09 -0500 |
|---|---|---|
| committer | Douglas Rumbaugh <doug@douglasrumbaugh.com> | 2021-12-20 18:57:09 -0500 |
| commit | 79dfb33589ce9f5df9795a3975b16a87dacfd6b6 (patch) | |
| tree | 0f4f5f987b34cb8a143e2bfc85682fb695de2f30 | |
| parent | 39e386e9dcbe8b5ef762af10354be6d19110776c (diff) | |
| download | sh-ves-79dfb33589ce9f5df9795a3975b16a87dacfd6b6.tar.gz | |
README.md: Updated for new variable manipulation
| -rw-r--r-- | README.md | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -69,13 +69,13 @@ related to adding and removing elements from these variables. To add an entry to a path-like variable, ```bash -$ ves var-add <variable> <value> +$ ves var-add [--env=<name>] <variable> <value> ``` will prepend `<value>:` to the specified variable. To remove an entry from a path-like variable, ```bash -ves var-rm <variable> <value> +ves var-rm [--env=<name>] <variable> <value> ``` will remove `<value>:` from a path-like variable, if it is present. |