2014-02-01 02:17:32 +00:00
|
|
|
# pbpaste
|
|
|
|
|
2016-01-07 17:31:27 +00:00
|
|
|
> Send the contents of the clipboard to standard output.
|
2022-02-14 11:21:43 +00:00
|
|
|
> More information: <https://ss64.com/osx/pbpaste.html>.
|
2014-02-01 02:17:32 +00:00
|
|
|
|
2016-01-07 17:31:27 +00:00
|
|
|
- Write the contents of the clipboard to a file:
|
2014-02-01 02:17:32 +00:00
|
|
|
|
|
|
|
`pbpaste > {{file}}`
|
|
|
|
|
2016-01-07 17:31:27 +00:00
|
|
|
- Use the contents of the clipboard as input to a command:
|
2014-02-01 02:17:32 +00:00
|
|
|
|
|
|
|
`pbpaste | grep foo`
|