kv-bash icon indicating copy to clipboard operation
kv-bash copied to clipboard

key/value database written in bash script (permanent variables in shell)

Results 2 kv-bash issues
Sort by recently updated
recently updated
newest added

```bash # list all databases, and mark the current database with the '*' kvuse * default-db test-1 todo-app # switch to todo-app kvuse todo-app ``` # TODO - [ ]...

Now we can run ``` $ test="a b c" $ kvset key 1 2 3 4 $test $ kvget key > 1 2 3 4 a b c ``` This...