lua-users home
lua-l archive

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


On Fri, 18 Feb 2011 14:21:14 +0100, Michal Kolodziejczyk <miko@wp.pl>
wrote:
>I would use socket.sleep() if you have it available (and probably you do).
>The "most portable" from the POV of the lua code is
>os.execute("/usr/bin/sleep 0.2"), but you need /usr/bin/sleep installed
>on both systems (which you probably have).

Cool, /bin/sleep is indeed available on the appliance. os.execute()
works fine.

Thank you.