1CLIPBROWSE(1) User Contributed Perl Documentation CLIPBROWSE(1)
2
3
4
6 clipbrowse - Load a URL from the clipboard into your browser.
7
9 version 0.28
10
12 # ...copy something # (You might want to do a `clipjoin` if the URL
13 text is messy) $ clipbrowse
14
15 Remember that many browsers will usefully load things that don't look
16 like URL's. For example Firefox does a Google "I'm feeling lucky" with
17 non-URLs. This means you can have any text in your clipboard and
18 `clipbrowse`.
19
21 It saves a couple of seconds every time you run it. Chrome and
22 Firefox, for examples, automatically create a new tab and loads the
23 page when you invoke it from the command line. Already we've saved a
24 Ctrl+T and a Shift+Insert. When you consider the parallelizing (that
25 your browser will be actively loading the page while you're Alt+Tabbing
26 to it), you've squeaked out a little more.
27
28 Maybe I'm just a freak, but I like shaving out wasted time like that.
29
31 The environment variable $BROWSER will override the default launching
32 command. If you have a %s in the line, it will be replaced with the
33 url. if not, the url will be appended at the end.
34
35 The default is `chromium-browser "%s"` (Debian's Google Chrome) If you
36 still use Firefox, consider: `firefox -remote "openURL(%s,new-tab)"'`.
37
39 Ryan King <rking@panoptic.com> =head1 COPYRIGHT
40
41 Copyright (c) 2010. Ryan King. All rights reserved.
42
43 This program is free software; you can redistribute it and/or modify it
44 under the same terms as Perl itself.
45
46 See <http://www.perl.com/perl/misc/Artistic.html>
47
49 Websites
50 The following websites have more information about this module, and may
51 be of help to you. As always, in addition to those websites please use
52 your favorite search engine to discover more resources.
53
54 • MetaCPAN
55
56 A modern, open-source CPAN search engine, useful to view POD in
57 HTML format.
58
59 <https://metacpan.org/release/Clipboard>
60
61 • RT: CPAN's Bug Tracker
62
63 The RT ( Request Tracker ) website is the default bug/issue
64 tracking system for CPAN.
65
66 <https://rt.cpan.org/Public/Dist/Display.html?Name=Clipboard>
67
68 • CPANTS
69
70 The CPANTS is a website that analyzes the Kwalitee ( code metrics )
71 of a distribution.
72
73 <http://cpants.cpanauthors.org/dist/Clipboard>
74
75 • CPAN Testers
76
77 The CPAN Testers is a network of smoke testers who run automated
78 tests on uploaded CPAN distributions.
79
80 <http://www.cpantesters.org/distro/C/Clipboard>
81
82 • CPAN Testers Matrix
83
84 The CPAN Testers Matrix is a website that provides a visual
85 overview of the test results for a distribution on various
86 Perls/platforms.
87
88 <http://matrix.cpantesters.org/?dist=Clipboard>
89
90 • CPAN Testers Dependencies
91
92 The CPAN Testers Dependencies is a website that shows a chart of
93 the test results of all dependencies for a distribution.
94
95 <http://deps.cpantesters.org/?module=Clipboard>
96
97 Bugs / Feature Requests
98 Please report any bugs or feature requests by email to "bug-clipboard
99 at rt.cpan.org", or through the web interface at
100 <https://rt.cpan.org/Public/Bug/Report.html?Queue=Clipboard>. You will
101 be automatically notified of any progress on the request by the system.
102
103 Source Code
104 The code is open to the world, and available for you to hack on. Please
105 feel free to browse it and play with it, or whatever. If you want to
106 contribute patches, please send me a diff or prod me to pull from your
107 repository :)
108
109 <https://github.com/shlomif/Clipboard>
110
111 git clone git://github.com/shlomif/Clipboard.git
112
114 Shlomi Fish <shlomif@cpan.org>
115
117 Please report any bugs or feature requests on the bugtracker website
118 <https://github.com/shlomif/Clipboard/issues>
119
120 When submitting a bug or request, please include a test-file or a patch
121 to an existing test-file that illustrates the bug or desired feature.
122
124 This software is copyright (c) 2021 by Ryan King <rking@panoptic.com>.
125
126 This is free software; you can redistribute it and/or modify it under
127 the same terms as the Perl 5 programming language system itself.
128
129
130
131perl v5.34.0 2021-07-22 CLIPBROWSE(1)