🛼 skate
A personal key-value store.

Usage
Usage: skate [command]
KeyValues
Set a value for a key with an optional @ db. If VALUE is omitted, read value from the standard input:
# Usage: skate set KEY[@DB] [VALUE] [flags]
skate set foo@mydb bar
skate set foo < ./bar.txtGet a value for a key with an optional @ db:
# Usage: skate get KEY[@DB]
skate get foo@mydbDelete a key with an optional @ db:
# Usage: skate delete KEY[@DB]
skate delete foo@mydbList key value pairs with an optional @ db:
# Usage: skate list [@DB] [flags]
# Options:
# -d, --delimiter string delimiter to separate keys and values (default "\t")
# -k, --keys-only only print keys and don't fetch values from the db
# -r, --reverse list in reverse lexicographic order
# -b, --show-binary print binary values
# -v, --values-only only print values
skate list @mydbDatabases
List databases:
skate list-dbsDelete a database:
skate delete-db @mydb