![]() |
|
|
+ Search |
![]()
|
Dec 1st, 2004 09:16
Nat Tuck, Brady F,
Here's a cgi script that will do that on Unix:
#!/bin/sh
perl script.pl &
echo "Content-type: text/plain"
echo
echo "You win a background process"
If you need to do it from a perl cgi,
system("perl script.pl &")
works fine.