lua-users home
lua-l archive

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


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.