Re: How to continue process without waiting for the output of system()?
- From: Cod <zencod@xxxxxxxxx>
- Date: Fri, 31 Aug 2007 07:30:33 -0700
Thank you all.
Use Narthring's method or xhos's method, there is one problem: BEFORE
the calc closed, the programe won't exit. Just like this:
d:\>perl -e "fork or do {system('calc'); exi
t}; $|=1; print 'hello' "
hello
AFTER calc closed, below appears:
d:\>
By Follow Ben Morrow say, I tried:
d:\>perl -e "fork or do {system('calc'); exi
t}; $|=1; print 'hello' "
hello
d:\>
This time it works just what I wanted.
Thank you all again, and sorry for my poor English:)
.
- References:
- Prev by Date: Re: Yahoo finance quotes retrieval failing
- Next by Date: Re: Important Research Project
- Previous by thread: Re: How to continue process without waiting for the output of system()?
- Next by thread: FAQ 1.1 What is Perl?
- Index(es):
Relevant Pages
|