Windows: Fork and run a process in the background

2006-06-06 Thread Daniel Kasak
Greetings. I'd like to trigger an application to open ( Acrobat Reader ), and *not* freeze my perl app while it's open. Under Linux, I do: system ( evince /path/to/pdf.pdf ); The ampersand does what I need. This doesn't work under Windows. Is there a cheap nasty workaround? -- Daniel Kasak

RE: Windows: Fork and run a process in the background

2006-06-06 Thread Timothy Johnson
Try this: system( start evince /path/to/pdf.pdf ); Both cheap and nasty. -Original Message- From: Daniel Kasak [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 06, 2006 5:37 PM To: beginners@perl.org Subject: Windows: Fork and run a process in the background Greetings. I'd like

Re: Windows: Fork and run a process in the background

2006-06-06 Thread Daniel Kasak
Timothy Johnson wrote: Try this: system( start evince /path/to/pdf.pdf ); Both cheap and nasty. That does it. Thanks :) -- Daniel Kasak IT Developer NUS Consulting Group Level 5, 77 Pacific Highway North Sydney, NSW, Australia 2060 T: (+61) 2 9922-7676 / F: (+61) 2 9922 7989

Run a process in the background

2004-09-22 Thread Errin Larsen
Hi Perlers, I know that questions like this get asked all the time, but I guess it's just my turn to ask 'em! I need to kick of some processes in my script. However, the script needs to kick them all off at once and then stick around to do some other things. I'm kinda new to Perl, but in my

Re: Run a process in the background

2004-09-22 Thread Wiggins d Anconia
Hi Perlers, I know that questions like this get asked all the time, but I guess it's just my turn to ask 'em! I need to kick of some processes in my script. However, the script needs to kick them all off at once and then stick around to do some other things. I'm kinda new to Perl, but

Re: Run a process in the background

2004-09-22 Thread John W. Krahn
Errin Larsen wrote: Hi Perlers, Hello, I know that questions like this get asked all the time, but I guess it's just my turn to ask 'em! I need to kick of some processes in my script. However, the script needs to kick them all off at once and then stick around to do some other things. I'm kinda