@rem = '--*-Perl-*-- @echo off perl -x -S "%~dpnx0" %1 %2 %3 %4 %5 %6 %7 %8 %9 goto endofperl @rem '; #!perl #line 8 use strict;0 use warnings; use Win32::Clipboard; my $CLIP = Win32::Clipboard(); my $text = $CLIP->GetText; my @text = split /\r\n/,$text; my $lines = scalar @text; my $halflines = $lines/2; for (my $i=0; $i<$lines/2; ++$i) { $text[$i] .= $text[$i+$halflines]; } @text = @text[0...$halflines-1]; $text = join "\r\n", @text; $text .= "\r\n"; $CLIP->Set($text); __END__ :endofperl