Project

General

Profile

Clipboard » History » Version 1

Per Amundsen, 02/09/2014 03:30 PM

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