[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: Launch vxWorks Script from Lua Shell
- From: steve donovan <steve.j.donovan@...>
- Date: Mon, 25 May 2009 11:19:47 +0200
On Fri, May 22, 2009 at 5:26 PM, Katherine Shaughnessy
<kathersh@nortel.com> wrote:
> I have written several long vxWorks scripts. Currently I'm running them by
> piping the text to the shell.
Well, you can always use the old standby:
os.execute('COMMAND > /tmp/1')
or even
f = io.popen ('COMMAND')
steve d.