lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


> 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.