---
name: mikeyobrien/clipboard
source: https://app.decimal.ai/s/mikeyobrien-clipboard@3/SKILL.md
source_sha256: 47fc892fe0b2
---

# Clipboard Operations

## Read clipboard
```bash
pbpaste
```

## Write to clipboard
```bash
echo "text to copy" | pbcopy
```

## Copy file contents
```bash
pbcopy < file.txt
```

## Copy command output
```bash
ls -la | pbcopy
```

Returns the clipboard contents as plain text. Binary/image data is not supported via these commands.