Simple CLI clipboard manager for storing named snippets, listing them, and copying any item to your system clipboard.
- Add named clipboard snippets with
add
command - List stored snippets in a neat table
- Copy snippet value to clipboard by ID
- Remove snippets by ID
- Persistent JSON storage
- Go programming language
- github.com/atotto/clipboard for cross-platform clipboard support
git clone https://github.com/codesamu/clipgo.git
cd clipgo
go build -o clipgo
clipgo add "title" "Value"
clipgo list
clipgo copy <num>
cligo remove <num>