GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
AnyEvent::Subprocess::Easy(3) User Contributed Perl Documentation AnyEvent::Subprocess::Easy(3)

AnyEvent::Subprocess::Easy - wrappers around AnyEvent::Subprocess to save typing in simple cases

version 1.102912

    use AnyEvent::Subprocess::Easy qw(qx_nonblock);

    my $date = qx_nonblock('date')->recv;

I was writing some examples and noticed some patterns that came up again and again, so I converted them to functions. These are opaque and non-customizeable, but might be helpful if you want to do something common without a lot of typing. If they don't work quite the way you want, it is not too hard to use AnyEvent::Subprocess directly.

We use Sub::Exporter here, so you can customize the exports as appropriate.

"qx_nonblock" works like qx, except that it returns a condvar that you "recv" on to get the captured stdout. The "recv" will throw an exception if the process you run doesn't exit cleanly.

You can pass in one string for the shell to interpret (like "exec"), or you can pass in a list of arguments (passed directly to "exec"). You can also pass in a coderef if you like; it will be called with an undefined number of arguments in the child process (and should "exit 0" if it is successful).

Not enough "easy" stuff here yet. Please contribute your common patterns!

AnyEvent::Subprocess

Jonathan Rockway <jrockway@cpan.org>

This software is copyright (c) 2011 by Jonathan Rockway.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.

2011-02-25 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.