1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-16 04:34:58 +00:00
serenity/Base/usr/share/man/man1/copy.md
2021-07-03 09:08:25 +02:00

28 lines
555 B
Markdown

## Name
copy - copy text to the clipboard
## Synopsis
```**sh
$ copy [options...] [text...]
```
## Description
`copy` copies text from stdin or command-line argument (`text`) to the system clipboard. The clipboard is managed by WindowServer.
## Options
* `-t type`, `--type type`: MIME type of data stored in clipboard. The default type is `text/plain`.
* `-c`, `--clear`: Clear the clipboard instead of copying.
## Examples
```sh
# Copy some image to clipboard
$ cat image.png | copy -t image/png
# Place text 'foo' in clupboard
$ copy foo
```