1Clipboard(3) User Contributed Perl Documentation Clipboard(3)
2
3
4
6 Clipboard - Copy and paste with any OS
7
9 use Clipboard; print Clipboard->paste; Clipboard->copy('foo');
10
11 # Clipboard->cut() is an alias for copy(). copy() is the preferred #
12 method, because we're not really "cutting" anything.
13
14 Also see the scripts:
15 clipaccumulate
16 clipbrowse
17 clipedit
18 clipfilter
19 clipjoin
20
22 Who doesn't remember the first time they learned to copy and paste, and
23 generated an exponentially growing text document? Yes, that's right,
24 clipboards are magical.
25
26 With Clipboard.pm, this magic is now trivial to access, cross-
27 platformly, from your Perl code.
28
30 Seems to be working well for Linux, OSX, *BSD, and Windows. I use it
31 every day on Linux, so I think I've got most of the details hammered
32 out (X selections are kind of weird). Please let me know if you
33 encounter any problems in your setup.
34
36 Ryan King <rking@sharpsaw.org>
37
39 Copyright (c) 2005. 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
46
47
48perl v5.12.0 2005-10-20 Clipboard(3)