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