How to See and Manage Clipboard History on Mac

macOS finally has a built-in clipboard history in Spotlight, but it expires and cannot pin snippets. Here is how to see it, the Terminal trick, and the managers that go further.

Copy a command, then copy a file path, and on most Macs the command is gone. For years the Mac clipboard worked exactly like the iPhone: one slot, one item, wiped the moment you copied the next thing. That has changed, but not as much as you might hope.

If you have searched for how to see your Mac clipboard history, this is the full picture. What macOS now does on its own, the Terminal commands developers already use, the third-party managers worth naming, and how to keep the snippets you reuse without losing them to a timer.

What the Mac clipboard actually does

The classic macOS clipboard is a single slot. It holds one thing at a time: the last text, image, or file reference you copied. Copy something new and the previous item is overwritten with no undo and no list to scroll back through.

That is still the foundation. Command-C and Command-V move exactly one item, and apps like Terminal, Finder, and your browser all share that same single clipboard. Nothing about that behavior went away.

What changed is that recent versions of macOS added a history layer on top of the single slot. It does not replace the one-item clipboard. It quietly remembers a few recent copies so you can go back to one. This is the same gap the iPhone still has, and we covered the mobile side in detail in does the iPhone have clipboard history.

The built-in Spotlight clipboard history

On current versions of macOS, clipboard history lives inside Spotlight. It is easy to miss because there is no separate app or menu for it.

To open it:

  1. Press Command-Space to open Spotlight.
  2. Press Command-4 to switch to the clipboard section.
  3. Double-click an item to paste it where your cursor is, or use the button on the right of a row to load it back onto the clipboard for a normal Command-V.

It remembers recent text and images, and pasting from it drops formatting, which is handy when you want plain text. You control how long it keeps entries in System Settings under Spotlight, with options for 30 minutes, 8 hours, or 7 days, plus a button to clear the history on demand.

This is a real improvement, and for a lot of people it is enough. But it has clear limits worth understanding before you rely on it.

Where the built-in history stops

The Spotlight history is designed to be temporary, not a library. Two limits matter most.

First, everything expires. Whatever window you pick, entries eventually fall out of history. There is no way to pin a command, a template, or a signature so it stays forever. If you copied a snippet last month, it is long gone.

Second, it is built around recent copies rather than organized, reusable snippets. There are no categories, no most-used ordering, and no way to keep a curated set of things you paste every day. It answers “what did I just copy” far better than “give me that block I use every week.”

pbcopy and pbpaste: the Terminal clipboard

Developers have a clipboard tool that predates all of this and does not care which macOS version you are on: pbcopy and pbpaste.

These two commands read and write the same system clipboard the rest of the Mac uses. pbcopy takes whatever you pipe into it and puts it on the clipboard. pbpaste prints the current clipboard contents to standard output.

# Put command output on the clipboard
ls -la | pbcopy

# Paste the clipboard into a file
pbpaste > notes.txt

# Copy a file's contents, then reuse it
pbcopy < config.json
pbpaste | grep "token"

This is genuinely useful for grabbing a long path, a generated key, or a block of output without reaching for the mouse. But notice the catch: pbpaste only ever returns the one current item. It is scripting convenience for the single-slot clipboard, not a history. Copy something new and the old value is gone here too.

Third-party clipboard managers on Mac

This is where the Mac has always had strong options, because power users wanted a real, persistent history long before Spotlight added one. The good news is you have a fair range of choices at different prices and privacy models. A quick, honest comparison of the popular ones:

Manager Focus Price model Sync
macOS Spotlight Recent copies, built in Free Local, expires on a timer
Maccy Fast, minimal, open source Free (optional paid build) Local only
Pastebot Polished app, content filters One-time purchase iCloud, with an iOS companion
Paste Rich media, design-forward Subscription iCloud
Raycast Clipboard inside a launcher Free, Pro is a subscription Sync on Pro
Alfred Clipboard inside a launcher Powerpack one-time license Local

A few notes so you can pick fairly:

  • Maccy is free, open source, and local only. If you want a no-fuss history that never leaves your Mac and costs nothing, it is a great starting point.
  • Pastebot from Tapbots is a one-time purchase with strong content filters and an iPhone companion, so it suits people who move between Mac and iOS a lot.
  • Paste is polished and handles rich media well, and it is a yearly subscription.
  • Raycast and Alfred fold clipboard history into a broader launcher. If you already live in one of them, adding clipboard history is an easy win. Raycast’s sync sits behind its Pro subscription; Alfred’s clipboard comes with the one-time Powerpack.

All of these are solid tools built by people who care. The right choice depends on three things: how much history you want to keep permanently, whether you need it on your iPhone and iPad too, and how you feel about a subscription versus paying once.

What to look for in a Mac clipboard manager

If you are moving beyond the built-in history, weigh these before you commit.

  • Permanent, pinnable snippets. The whole point of going past Spotlight is keeping the things you reuse for months, not just minutes. Look for saved items and categories, not another timed buffer.
  • Privacy and where data lives. A clipboard sees passwords, tokens, and card numbers. Prefer a tool that stores on your device and, if it syncs, uses your own iCloud rather than a company server. Bonus points for saving on demand instead of silently recording everything.
  • One-time versus subscription. Some of the best managers are one-time or free; others bill yearly. Over a few years the difference is real, so decide with eyes open. We break the math down in one-time versus subscription clipboard apps.
  • Cross-device reach. If you copy on a Mac but paste on an iPhone or iPad, you want the same library everywhere, not a Mac-only silo. Apple’s own Universal Clipboard across your devices moves one item between them, but it is not a shared history.

A private, cross-device option that pays once

If you want a real snippet library rather than a timed buffer, and you want it on your Mac and your iPhone, this is the gap CopyAgain fills.

CopyAgain lives in the Mac menu bar, so your saved snippets are one click away without opening an app. It reads the clipboard only when you tap to save something, so it never records a silent background history of everything you copy. What you save stays on your device and syncs through your own private iCloud, never our servers, and anything sensitive can sit behind Face ID.

Because the same library syncs to iPhone, iPad, and Android, a snippet you save at your desk is ready on your phone with a widget, the keyboard, Siri, or the Share sheet. You organize snippets into categories, sort by most used, and view them as cards, compact, or a grid. And it is a one-time $9.99 unlock, not a subscription, so there is nothing recurring to think about. You can see the platforms it covers on the Mac and cross-device overview.

What to do next

  • If your Mac is on a current macOS, try the Spotlight history now: Command-Space, then Command-4. It may cover your casual needs.
  • Developers should keep pbcopy and pbpaste in their toolkit for scripting the single clipboard.
  • If you rely on the same snippets for weeks or across devices, the built-in history will expire on you. Pick a manager that pins and organizes.
  • Decide up front whether you want free and local, a one-time purchase, or a subscription, then save your ten most-reused snippets first.

FAQ

Does the Mac have a built-in clipboard history? Recent versions of macOS do. Spotlight now keeps a short clipboard history you open with Command-Space then Command-4. It is useful, but items expire on a timer and you cannot pin anything permanently. Older macOS versions have no history at all, just one copied item.

How do I see clipboard history on a Mac? On current macOS, press Command-Space to open Spotlight, then Command-4 to switch to the clipboard section. You will see recent copies you can double-click to paste. If your Mac is on an older version, there is no history screen and you need a clipboard manager app.

How long does Mac clipboard history last? In Spotlight, history is temporary. You can set it to expire after 30 minutes, 8 hours, or 7 days in System Settings under Spotlight, and clear it manually. Nothing is kept permanently, so anything you want to reuse for months should live in a clipboard manager instead.

How do I copy and paste in the Mac Terminal? Use pbcopy and pbpaste. Pipe output into pbcopy to put it on the clipboard, for example ls | pbcopy, and run pbpaste to print the current clipboard back out. They read and write the same single system clipboard the rest of macOS uses.

Is there a one-time-purchase clipboard manager for Mac? Yes. Maccy is free and open source, Pastebot is a one-time purchase, and Alfred’s Powerpack is a one-time license. CopyAgain is a one-time unlock across Mac, iPhone, iPad, and Android. Paste and Raycast Pro are subscriptions, so pricing is worth checking before you commit.

CopyAgain keeps the snippets you actually reuse in a private library on your Mac menu bar and your iPhone, saved on demand, synced through your own iCloud, and one click from copied again.

More from the blog