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
- Host: GitHub
- URL: https://github.com/mingrammer/clip
- Owner: mingrammer
- License: mit
- Created: 2018-03-08T04:27:35.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-12-12T13:21:41.000Z (over 7 years ago)
- Last Synced: 2025-07-30T01:59:06.967Z (11 months ago)
- Topics: cli, clipboard, key-value-store
- Language: Go
- Homepage:
- Size: 799 KB
- Stars: 11
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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