How do I start a process in the background?
You could use
system("cmd &")
or you could use fork as documented in
perlfunc/"fork"
, with further examples in
perlipc
. Some things to be aware of, if you're on a Unix-like system:
Back to
perlfaq8