in reply to Using HTTP::Request::Common to do a GET with form-data?

Depending on your needs you may be able to use LWP::Simple.
Makes posting to a form very easy.

perl -MLWP::Simple -ne 'getprint("http://your_site.com/form.cgi?unsubs +cribe=1&who=me" )'

Note though that any form variables that you want to submit to the form will have to be properly encoded.

Modules like URI::Escape can help with that though. :-)

Hope that helps.

Wonko