clipboarder list¶
List the most recent clipboard items.
Synopsis¶
Options¶
| Flag | Default | Description |
|---|---|---|
-l, --limit <N> |
20 |
How many items to return. |
-k, --kind <K> |
all |
Restrict to one kind. See content types. Use pinned for the pin list. |
--json |
off | Emit JSON instead of a table. |
Output (table)¶
ID KIND AGE SOURCE PREVIEW
17 url 5s Safari https://anthropic.com/news/claude-3-5-sonnet
16 repo 2m Safari https://github.com/tauri-apps/tauri
15 code 4m VS Code const fetchUser = async (id: string) => { …
IDis stable across reboots; use it withshow,pin,delete,copy.AGEislast_used_at(bumped on re-copy or paste-back).SOURCEis the localized app name where the copy happened.- Pinned items show a leading ★.
Output (JSON)¶
[
{
"id": 17,
"kind": "url",
"content": "https://anthropic.com/news/claude-3-5-sonnet",
"preview": "https://anthropic.com/news/claude-3-5-sonnet",
"source_app": "Safari",
"source_app_id": "com.apple.Safari",
"meta": "anthropic.com",
"image_path": null,
"pinned": false,
"size": 44,
"created_at": 1778619961050,
"last_used_at": 1778619961050
},
…
]