1Clipboard(3) User Contributed Perl Documentation Clipboard(3)
2
3
4
6 Clipboard
7
9 version 0.19
10
12 use Clipboard;
13 print Clipboard->paste;
14 Clipboard->copy('foo');
15 # Same as copy on non-X / non-Xclip systems
16 Clipboard->copy_to_all_selections('text_to_copy');
17
18 Clipboard->cut() is an alias for copy(). copy() is the preferred
19 method, because we're not really "cutting" anything.
20
21 Also see the scripts:
22 clipaccumulate
23 clipbrowse
24 clipedit
25 clipfilter
26 clipjoin
27
29 Who doesn't remember the first time they learned to copy and paste, and
30 generated an exponentially growing text document? Yes, that's right,
31 clipboards are magical.
32
33 With Clipboard.pm, this magic is now trivial to access, in a cross-
34 platform-consistent API, from your Perl code.
35
37 Clipboard - Copy and paste with any OS
38
40 version 0.19
41
43 Seems to be working well for Linux, OSX, *BSD, and Windows. I use it
44 every day on Linux, so I think I've got most of the details hammered
45 out (X selections are kind of weird). Please let me know if you
46 encounter any problems in your setup.
47
49 Ryan King <rking@panoptic.com>
50
52 Copyright (c) 2010. Ryan King. All rights reserved.
53
54 This program is free software; you can redistribute it and/or modify it
55 under the same terms as Perl itself.
56
57 See http://www.perl.com/perl/misc/Artistic.html
58
60 Websites
61 The following websites have more information about this module, and may
62 be of help to you. As always, in addition to those websites please use
63 your favorite search engine to discover more resources.
64
65 · MetaCPAN
66
67 A modern, open-source CPAN search engine, useful to view POD in
68 HTML format.
69
70 <https://metacpan.org/release/Clipboard>
71
72 · Search CPAN
73
74 The default CPAN search engine, useful to view POD in HTML format.
75
76 <http://search.cpan.org/dist/Clipboard>
77
78 · RT: CPAN's Bug Tracker
79
80 The RT ( Request Tracker ) website is the default bug/issue
81 tracking system for CPAN.
82
83 <https://rt.cpan.org/Public/Dist/Display.html?Name=Clipboard>
84
85 · AnnoCPAN
86
87 The AnnoCPAN is a website that allows community annotations of Perl
88 module documentation.
89
90 <http://annocpan.org/dist/Clipboard>
91
92 · CPAN Ratings
93
94 The CPAN Ratings is a website that allows community ratings and
95 reviews of Perl modules.
96
97 <http://cpanratings.perl.org/d/Clipboard>
98
99 · CPANTS
100
101 The CPANTS is a website that analyzes the Kwalitee ( code metrics )
102 of a distribution.
103
104 <http://cpants.cpanauthors.org/dist/Clipboard>
105
106 · CPAN Testers
107
108 The CPAN Testers is a network of smoke testers who run automated
109 tests on uploaded CPAN distributions.
110
111 <http://www.cpantesters.org/distro/C/Clipboard>
112
113 · CPAN Testers Matrix
114
115 The CPAN Testers Matrix is a website that provides a visual
116 overview of the test results for a distribution on various
117 Perls/platforms.
118
119 <http://matrix.cpantesters.org/?dist=Clipboard>
120
121 · CPAN Testers Dependencies
122
123 The CPAN Testers Dependencies is a website that shows a chart of
124 the test results of all dependencies for a distribution.
125
126 <http://deps.cpantesters.org/?module=Clipboard>
127
128 Bugs / Feature Requests
129 Please report any bugs or feature requests by email to "bug-clipboard
130 at rt.cpan.org", or through the web interface at
131 <https://rt.cpan.org/Public/Bug/Report.html?Queue=Clipboard>. You will
132 be automatically notified of any progress on the request by the system.
133
134 Source Code
135 The code is open to the world, and available for you to hack on. Please
136 feel free to browse it and play with it, or whatever. If you want to
137 contribute patches, please send me a diff or prod me to pull from your
138 repository :)
139
140 <https://github.com/shlomif/clipboard>
141
142 git clone https://github.com/shlomif/Clipboard
143
145 Shlomi Fish <shlomif@cpan.org>
146
148 Please report any bugs or feature requests on the bugtracker website
149 <https://github.com/shlomif/clipboard/issues>
150
151 When submitting a bug or request, please include a test-file or a patch
152 to an existing test-file that illustrates the bug or desired feature.
153
155 This software is copyright (c) 2019 by Ryan King <rking@panoptic.com>.
156
157 This is free software; you can redistribute it and/or modify it under
158 the same terms as the Perl 5 programming language system itself.
159
160
161
162perl v5.28.1 2019-01-31 Clipboard(3)