1CLIPFILTER(1) User Contributed Perl Documentation CLIPFILTER(1)
2
3
4
6 clipfilter
7
9 version 0.19
10
12 # (copy some stuff)
13 $ clipfilter -html
14 # (paste, with html entities substituted in)
15
16 # or URI-escaping:
17 $ clipfilter -uri
18
19 # or pipe through an arbitrary program, like `tac`, the backwards cat:
20 $ clipfilter tac
21 # Note: currently, this just dumps everything to open2() and reads
22 # everything back. It could possibly create a deadlock, but I haven't
23 # found the case that causes this, yet.
24
26 clipfilter - Run various conversions for your clipboard data.
27
29 version 0.19
30
32 A very frequent user pattern is to copy something, edit it in some rote
33 way, and then paste it back. Writing your own filter scripts will make
34 it even more useful.
35
37 Current weirdness when piping this to some programs, like 'wc' and
38 'tail'. I will work on this.
39
41 Ryan King <rking@panoptic.com>
42
44 Copyright (c) 2010. Ryan King. All rights reserved.
45
46 This program is free software; you can redistribute it and/or modify it
47 under the same terms as Perl itself.
48
49 See <http://www.perl.com/perl/misc/Artistic.html>
50
52 Websites
53 The following websites have more information about this module, and may
54 be of help to you. As always, in addition to those websites please use
55 your favorite search engine to discover more resources.
56
57 · MetaCPAN
58
59 A modern, open-source CPAN search engine, useful to view POD in
60 HTML format.
61
62 <https://metacpan.org/release/Clipboard>
63
64 · Search CPAN
65
66 The default CPAN search engine, useful to view POD in HTML format.
67
68 <http://search.cpan.org/dist/Clipboard>
69
70 · RT: CPAN's Bug Tracker
71
72 The RT ( Request Tracker ) website is the default bug/issue
73 tracking system for CPAN.
74
75 <https://rt.cpan.org/Public/Dist/Display.html?Name=Clipboard>
76
77 · AnnoCPAN
78
79 The AnnoCPAN is a website that allows community annotations of Perl
80 module documentation.
81
82 <http://annocpan.org/dist/Clipboard>
83
84 · CPAN Ratings
85
86 The CPAN Ratings is a website that allows community ratings and
87 reviews of Perl modules.
88
89 <http://cpanratings.perl.org/d/Clipboard>
90
91 · CPANTS
92
93 The CPANTS is a website that analyzes the Kwalitee ( code metrics )
94 of a distribution.
95
96 <http://cpants.cpanauthors.org/dist/Clipboard>
97
98 · CPAN Testers
99
100 The CPAN Testers is a network of smoke testers who run automated
101 tests on uploaded CPAN distributions.
102
103 <http://www.cpantesters.org/distro/C/Clipboard>
104
105 · CPAN Testers Matrix
106
107 The CPAN Testers Matrix is a website that provides a visual
108 overview of the test results for a distribution on various
109 Perls/platforms.
110
111 <http://matrix.cpantesters.org/?dist=Clipboard>
112
113 · CPAN Testers Dependencies
114
115 The CPAN Testers Dependencies is a website that shows a chart of
116 the test results of all dependencies for a distribution.
117
118 <http://deps.cpantesters.org/?module=Clipboard>
119
120 Bugs / Feature Requests
121 Please report any bugs or feature requests by email to "bug-clipboard
122 at rt.cpan.org", or through the web interface at
123 <https://rt.cpan.org/Public/Bug/Report.html?Queue=Clipboard>. You will
124 be automatically notified of any progress on the request by the system.
125
126 Source Code
127 The code is open to the world, and available for you to hack on. Please
128 feel free to browse it and play with it, or whatever. If you want to
129 contribute patches, please send me a diff or prod me to pull from your
130 repository :)
131
132 <https://github.com/shlomif/clipboard>
133
134 git clone https://github.com/shlomif/Clipboard
135
137 Shlomi Fish <shlomif@cpan.org>
138
140 Please report any bugs or feature requests on the bugtracker website
141 <https://github.com/shlomif/clipboard/issues>
142
143 When submitting a bug or request, please include a test-file or a patch
144 to an existing test-file that illustrates the bug or desired feature.
145
147 This software is copyright (c) 2019 by Ryan King <rking@panoptic.com>.
148
149 This is free software; you can redistribute it and/or modify it under
150 the same terms as the Perl 5 programming language system itself.
151
152
153
154perl v5.28.1 2019-01-31 CLIPFILTER(1)