1CLIPACCUMULATE(1) User Contributed Perl Documentation CLIPACCUMULATE(1)
2
3
4
6 clipaccumulate - Make a bunch of little clipboards into one big one.
7
9 version 0.28
10
12 The first thing it says (which goes to STDERR, so you can redirect into
13 a file if you want), is how to exit, which is by copying the magic
14 "end" string into the clipboard. Crufty? Yep. You can still do
15 Ctrl+C if you don't like this (or if the string scrolls off the top of
16 the screen).
17
18 The next thing it does is wait for the clipboard to change, at which
19 point it will print out the new data and go back to waiting for the
20 clipboard to change.
21
22 Then you copy the exit string, and it will fill the clipboard with all
23 the little pieces it saw along the way.
24
25 (Right now, it just joins everything with spaces in between - is this
26 bugging anyone?)
27
29 Hard to explain. I run into cases where I wanted to make a bunch of
30 small notes that included all these different bits of info. Instead of
31 jotting them down on a scrap of paper, I made this.
32
33 Let me know how it can be made better.
34
36 Ryan King <rking@panoptic.com>
37
39 Copyright (c) 2010. Ryan King. All rights reserved.
40
41 This program is free software; you can redistribute it and/or modify it
42 under the same terms as Perl itself.
43
44 See <http://www.perl.com/perl/misc/Artistic.html>
45
47 Websites
48 The following websites have more information about this module, and may
49 be of help to you. As always, in addition to those websites please use
50 your favorite search engine to discover more resources.
51
52 • MetaCPAN
53
54 A modern, open-source CPAN search engine, useful to view POD in
55 HTML format.
56
57 <https://metacpan.org/release/Clipboard>
58
59 • RT: CPAN's Bug Tracker
60
61 The RT ( Request Tracker ) website is the default bug/issue
62 tracking system for CPAN.
63
64 <https://rt.cpan.org/Public/Dist/Display.html?Name=Clipboard>
65
66 • CPANTS
67
68 The CPANTS is a website that analyzes the Kwalitee ( code metrics )
69 of a distribution.
70
71 <http://cpants.cpanauthors.org/dist/Clipboard>
72
73 • CPAN Testers
74
75 The CPAN Testers is a network of smoke testers who run automated
76 tests on uploaded CPAN distributions.
77
78 <http://www.cpantesters.org/distro/C/Clipboard>
79
80 • CPAN Testers Matrix
81
82 The CPAN Testers Matrix is a website that provides a visual
83 overview of the test results for a distribution on various
84 Perls/platforms.
85
86 <http://matrix.cpantesters.org/?dist=Clipboard>
87
88 • CPAN Testers Dependencies
89
90 The CPAN Testers Dependencies is a website that shows a chart of
91 the test results of all dependencies for a distribution.
92
93 <http://deps.cpantesters.org/?module=Clipboard>
94
95 Bugs / Feature Requests
96 Please report any bugs or feature requests by email to "bug-clipboard
97 at rt.cpan.org", or through the web interface at
98 <https://rt.cpan.org/Public/Bug/Report.html?Queue=Clipboard>. You will
99 be automatically notified of any progress on the request by the system.
100
101 Source Code
102 The code is open to the world, and available for you to hack on. Please
103 feel free to browse it and play with it, or whatever. If you want to
104 contribute patches, please send me a diff or prod me to pull from your
105 repository :)
106
107 <https://github.com/shlomif/Clipboard>
108
109 git clone git://github.com/shlomif/Clipboard.git
110
112 Shlomi Fish <shlomif@cpan.org>
113
115 Please report any bugs or feature requests on the bugtracker website
116 <https://github.com/shlomif/Clipboard/issues>
117
118 When submitting a bug or request, please include a test-file or a patch
119 to an existing test-file that illustrates the bug or desired feature.
120
122 This software is copyright (c) 2021 by Ryan King <rking@panoptic.com>.
123
124 This is free software; you can redistribute it and/or modify it under
125 the same terms as the Perl 5 programming language system itself.
126
127
128
129perl v5.34.0 2021-07-22 CLIPACCUMULATE(1)