#!/usr/bin/perl

eval 'exec /usr/bin/perl  -S $0 ${1+"$@"}'
    if 0; # not running under some shell

use Sysadm::Install qw(:all);
print STDERR "Type perl code, terminate by CTRL-D\n";
my $in = join "", <>;
$in =~ s/\n/ /g;

print "perl -e ", qquote($in, ':shell'), "\n";
