Project

General

Profile

Clipboard » History » Version 3

Per Amundsen, 06/27/2017 06:14 PM

1 2 Per Amundsen
_Added in 1.9.0_
2
3 1 Per Amundsen
*/clipboard [-an] <text>*
4
5
Copies <text> to the clipboard.
6
7 3 Per Amundsen
_If <text> is empty, clipboard is cleared._
8
9 1 Per Amundsen
*Switches*
10
11
-a - Appends the text to current clipboard text instead.
12
-n - Adds \r\n at the end of the text.
13
14
*Parameters*
15
16
<text> - Text to add.
17
18
*Example*
19
<pre>
20
;Adds 'clip' to the clipboard
21
/clipoard clip
22
23
;Append 'board' to the clipboard so result becomes 'clipboard'
24
/clipoard -a board
25
</pre>