summaryrefslogtreecommitdiff
path: root/Base/usr/share/man/man1/copy.md
blob: 5fa6ea950e48ffefe88f53079c530382431f677a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
## 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
```