in reply to Re: Is it possible to background a perl script from within itself?
in thread Is it possible to background a perl script from within itself?

OK, rereading the text at the top..

One way to achieve the result is to resort to bash:
#!/bin/bash
perlprog.pl&
But it seems silly just to avoid typing '&'. What exactly are you trying to achieve?
  • Comment on Re: Answer: Is it possible to background a perl script from within itself?