Klipa is a simple and efficient CLI clipboard manager that allows you to save, retrieve, copy, and manage clipboard entries directly from your terminal.
- Save clipboard values or raw CLI input
- List all saved clipboard entries
- Retrieve values using keys
- Copy stored values back to the system clipboard
- Delete specific entries or flush the entire clipboard store
- Simple key-based organization for fast access
You can download the latest release binaries from the Releases page or install via Homebrew:
brew install Humiditii/homebrew-tap/klipa✅ Or, use the simplified method by tapping the repo first:
brew tap Humiditii/homebrew-tap
brew install klipaKlipa supports several useful commands to manage your clipboard data efficiently.
- Description: Save clipboard entry or a value from the CLI.
- Usage:
klipa save # Saves value from current system clipboard klipa save -v "my text" -k note1 # Saves "my text" under the key 'note1'
- Description: List all saved clipboard entries by their keys.
- Usage:
klipa list
- Description: Retrieve a saved item using its key.
- Usage:
klipa get keyName
- Description: Copy a saved value back to your system clipboard.
- Usage:
klipa copy keyName
- Description: Delete a specific clipboard entry by its key.
- Usage:
klipa clear keyName
- Description: Completely clear all saved clipboard entries.
- Usage:
klipa flush
# Save a clipboard item
klipa save
# Save a specific value under a key
klipa save -v "secret-token" -k token
# List all saved items
klipa list
# Retrieve a value
klipa get token
# Copy value back to clipboard
klipa copy token
# Remove an item
klipa clear token
# Remove everything
klipa flushKlipa is released under the MIT License.