• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

at/H23-Feb-2021-11988

lib/H23-Feb-2021-669142

scripts/H23-Feb-2021-930130

t/H23-Feb-2021-7359

xt/H23-Feb-2021-10477

Build.PLH A D23-Feb-20211.5 KiB7660

ChangesH A D23-Feb-20214.2 KiB13592

LICENSEH A D23-Feb-202120.1 KiB397324

MANIFESTH A D23-Feb-2021658 3736

MANIFEST.SKIPH A D23-Feb-20213

META.jsonH A D23-Feb-202118 KiB564562

META.ymlH A D23-Feb-202111.3 KiB409408

README.mkdnH A D23-Feb-20214.3 KiB13277

dist.iniH A D23-Feb-2021662 3432

weaver.iniH A D23-Feb-202111 21

README.mkdn

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