lua-users home
lua-l archive

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


Added: would really like to do this without using a temporary file
Any hints?
>Possibly not the best solution, but assuming the script time is far larger than the lua processing time, you could programmatically write a shell script to /tmp which basically says
>deploy.exp arg1 > output1 &
>deploy.exp arg2 > output2 &
>wait
>then os.execute() it.
>Once  os.execute returns you can read output1 and output2
>Thanks,
>Kev