Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要这样做:
我认为这可以解决问题:
use IPC::Run qw( start run ); my $prog1_h = start [ $prog1, @progs1_args ]; run [ $prog2, @progs2_args ]; my $prog2_exit_code = $? >> 8; $prog1_h->finish();