Search notes:

Perl module Clipboard

#   if 
#      «can't find the 'xclip' script» 
#   then 
#       sudo yum -y install xclip
#

use warnings; use strict;

use Clipboard;

print "Currenty in Clipboard: " . Clipboard -> paste() . "\n";

Clipboard -> copy ("Putting something into the Clipboard");
Github repository PerlModules, path: /Clipboard/script.pl

See also

Perl modules.
Perl module Win32::Clipboard
/dev/clipboard
xclip (The command line interface to the X Clipboard).

Index