http://qs321.pair.com?node_id=101282


in reply to Windows' clipboard

Look at the Win32::Clipboard module, available on CPAN. Straight from the docs:
use Win32::Clipboard; $CLIP = Win32::Clipboard(); print "Clipboard contains: ", $CLIP->Get(), "\n"; $CLIP->Set("some text to copy into the clipboard");