Sponsoring The Perl Toolchain Summit 2025: Help make this important event another success Learn more
12345678 #!/usr/bin/perl -wuse HTTP::Proxy;use strict;# a very simple proxymy $proxy = HTTP::Proxy->new;$proxy->verbose( shift || 0 );$proxy->start;
#!/usr/bin/perl -w
use
HTTP::Proxy;
strict;
# a very simple proxy
my
$proxy
= HTTP::Proxy->new;
->verbose(
shift
|| 0 );
->start;