1CLIPFILTER(1) User Contributed Perl Documentation CLIPFILTER(1)
2
3
4
6 clipfilter - Run various conversions for your clipboard data.
7
9 version 0.28
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 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 • RT: CPAN's Bug Tracker
59
60 The RT ( Request Tracker ) website is the default bug/issue
61 tracking system for CPAN.
62
63 <https://rt.cpan.org/Public/Dist/Display.html?Name=Clipboard>
64
65 • CPANTS
66
67 The CPANTS is a website that analyzes the Kwalitee ( code metrics )
68 of a distribution.
69
70 <http://cpants.cpanauthors.org/dist/Clipboard>
71
72 • CPAN Testers
73
74 The CPAN Testers is a network of smoke testers who run automated
75 tests on uploaded CPAN distributions.
76
77 <http://www.cpantesters.org/distro/C/Clipboard>
78
79 • CPAN Testers Matrix
80
81 The CPAN Testers Matrix is a website that provides a visual
82 overview of the test results for a distribution on various
83 Perls/platforms.
84
85 <http://matrix.cpantesters.org/?dist=Clipboard>
86
87 • CPAN Testers Dependencies
88
89 The CPAN Testers Dependencies is a website that shows a chart of
90 the test results of all dependencies for a distribution.
91
92 <http://deps.cpantesters.org/?module=Clipboard>
93
94 Bugs / Feature Requests
95 Please report any bugs or feature requests by email to "bug-clipboard
96 at rt.cpan.org", or through the web interface at
97 <https://rt.cpan.org/Public/Bug/Report.html?Queue=Clipboard>. You will
98 be automatically notified of any progress on the request by the system.
99
100 Source Code
101 The code is open to the world, and available for you to hack on. Please
102 feel free to browse it and play with it, or whatever. If you want to
103 contribute patches, please send me a diff or prod me to pull from your
104 repository :)
105
106 <https://github.com/shlomif/Clipboard>
107
108 git clone git://github.com/shlomif/Clipboard.git
109
111 Shlomi Fish <shlomif@cpan.org>
112
114 Please report any bugs or feature requests on the bugtracker website
115 <https://github.com/shlomif/Clipboard/issues>
116
117 When submitting a bug or request, please include a test-file or a patch
118 to an existing test-file that illustrates the bug or desired feature.
119
121 This software is copyright (c) 2021 by Ryan King <rking@panoptic.com>.
122
123 This is free software; you can redistribute it and/or modify it under
124 the same terms as the Perl 5 programming language system itself.
125
126
127
128perl v5.38.0 2023-07-20 CLIPFILTER(1)