[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: How to run in background through forking in Lua?
- From: Luiz Henrique de Figueiredo <lhf@...>
- Date: Mon, 3 Jan 2011 13:16:05 -0200
> In my Lua readings I haven't come across a fork() command. Is there a way I
> can rewrite my ufork.pl in Lua? If not, is there a different way to do it in
> Lua?
For Posix systems, you can use os.execute("prog arg1 arg2 &").
There is a similar incantation for Windows that I forget now.