Files
tldr/pages/osx/pbpaste.md
T
2025-11-04 10:05:12 +02:00

361 B

pbpaste

Send the contents of the clipboard to stdout. Comparable to pressing <Cmd v> on the keyboard. More information: https://keith.github.io/xcode-man-pages/pbcopy.1.

  • Write the contents of the clipboard to a file:

pbpaste > {{path/to/file}}

  • Use the contents of the clipboard as input to a command:

pbpaste | {{grep search_string}}