Home  â€º  Articles

How to Clear Clipboard History on a Mac

Updated 2026-09-07  Â·  3 min read

Windows has a clipboard history you can open and clear. macOS doesn't, it holds exactly one item at a time, invisibly, until something overwrites it or the Mac restarts.

What macOS's clipboard does

Copy something, and it sits in the pasteboard (Apple's term for the clipboard) as plain data, no history, no log, no built-in viewer. It stays there until one of three things happens: you copy something else, which overwrites it, an app clears it programmatically, or the Mac restarts.

That single-item, no-history design is the more private default compared to systems that keep a running log. The privacy issue isn't accumulation, it's that whatever you copied last stays there, in full, for as long as you leave it. If that was a password, a card number, or an API key, it's sitting in memory, readable by any app that asks, until something replaces it.

How to clear it manually

There's no menu item for this. The practical fix is to copy something harmless over whatever's there:

pbcopy < /dev/null

Run that in Terminal and it overwrites the clipboard with nothing. It's the closest thing macOS has to a clear button, and it's a command line away rather than a click.

Restarting also clears it, since the pasteboard is held in memory and doesn't survive a reboot. Not exactly a quick fix if all you need is to clear a password.

Why this matters more than it sounds like

Password managers routinely copy your password to the clipboard so you can paste it into a login field. Most of them clear it automatically after a short window, 30 to 90 seconds is typical, specifically because they know what's sitting there otherwise. If you copy a password manually rather than through a manager, nothing clears it for you.

What macOS does show you Universal Clipboard syncs your clipboard across your Mac, iPhone and iPad automatically if they share an Apple ID and are near each other. Convenient, and it means whatever's on your Mac's clipboard can also land on your phone's, worth remembering if you're clearing one and not the other.

Any app can read it

There's no permission prompt for reading the clipboard on macOS, the way there's for camera or microphone access. Any running app can call the same API and read whatever's currently copied, silently, with no notification to you. That's by design, it's how paste works, and it's also why leaving something sensitive sitting there for longer than necessary is worth avoiding.

See what's on the clipboard and clear it with one tap, or set an auto-clear timer

CleanMachine's Clipboard Wiper shows a live preview of what's currently copied, clears it instantly, and can auto-clear after 1 to 30 minutes so a copied password doesn't sit there all afternoon. Free to use.

↓ Download Free & Scan

Common questions

Does macOS have a clipboard history?
No. Unlike Windows, macOS's pasteboard holds exactly one item at a time with no history and no native viewer. It's overwritten by your next copy or cleared on restart.
How do I clear the clipboard on a Mac?
There's no menu option. Run pbcopy < /dev/null in Terminal to overwrite it with nothing, or restart the Mac, which clears it since the pasteboard lives in memory.
Is it a security risk to leave a password on the clipboard?
Yes, more than most people assume. Any running app can read the clipboard with no permission prompt, so a copied password sits readable in memory for as long as it's there. Most password managers auto-clear it after 30 to 90 seconds for exactly this reason.
Does Universal Clipboard sync between my Mac and iPhone automatically?
Yes, if both devices share an Apple ID, have Bluetooth and Wi-Fi on, and are near each other. Whatever's copied on one can be pasted on the other without any action, which is worth knowing if you're only clearing the clipboard on one device.

Keep reading