An open API service indexing awesome lists of open source software.

https://github.com/kostya-zero/tana

No-nonsense key-value store for the CLI
https://github.com/kostya-zero/tana

Last synced: 11 months ago
JSON representation

No-nonsense key-value store for the CLI

Awesome Lists containing this project

README

          

# Tana

Tana is a simple CLI that can store keys and their values.

## Installation

If you have Go installed you can use `go install`:

```bash
go install github.com/kostya-zero/tana
```

Otherwise, download binary from the releases section.

## Usage

```bash
# Add key to store
tana set hello "Hello, world!"

# Get key
tana get hello

# List all keys
tana list

# Update key
tana update hello "Hello, John!"

# Delete key
tana delete hello
```