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