diff options
| author | Douglas Rumbaugh <doug@douglasrumbaugh.com> | 2021-12-20 17:58:48 -0500 |
|---|---|---|
| committer | Douglas Rumbaugh <doug@douglasrumbaugh.com> | 2021-12-20 17:59:14 -0500 |
| commit | 9dd607d38c8bfbf4028b77ff5f0b186f6224429c (patch) | |
| tree | 4c5734f951f88e954be2cd408af09748d8d94c2d /README.md | |
| parent | c581b6fc96ddc4b72753a6b1ac81812bbbace52d (diff) | |
| download | sh-ves-9dd607d38c8bfbf4028b77ff5f0b186f6224429c.tar.gz | |
Renamed variable manipulation script
Diffstat (limited to 'README.md')
| -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 add <variable> <value> +$ ves var-add <variable> <value> ``` will prepend `<value>:` to the specified variable. To remove an entry from a path-like variable, ```bash -ves rm <variable> <value> +ves var-rm <variable> <value> ``` will remove `<value>:` from a path-like variable, if it is present. |