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

https://github.com/mingrammer/clip

:paperclip: A simple key-value store for clipboard
https://github.com/mingrammer/clip

cli clipboard key-value-store

Last synced: 9 months ago
JSON representation

:paperclip: A simple key-value store for clipboard

Awesome Lists containing this project

README

          



Clip





A simple key-value store for clipboard




It is a command line tool for simple key-value store for clipboard. I often use frequently used text, especially long texts that are hard to remember, on the clipboard. But it is cumbersome to copy the text manually by using trackpad or mouse. So `clip` was developed to solve this problem.

## Installation

### Using go get

```bash
go get github.com/mingrammer/clip
```

It is recommended to also run `dep ensure` to make sure that the dependencies are in the correct versions.

### Using [homebrew](https://brew.sh)

```bash
brew tap mingrammer/clip
brew install clip
```

## Usage

```console
# List all key-value pairs
clip list

# Get a value of a specific key
clip get

# Set a key-value pair
clip set

# Delete a key
clip del

# Copy a value of a specific key to clipboard
clip cp
```

## License

MIT