[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: Command line library load in Lua 5.2
- From: Roberto Ierusalimschy <roberto@...>
- Date: Tue, 1 Nov 2011 13:12:12 -0200
> Now that we are all adjusting to the new way of handling modules, the
> '-l' command might be extended to allow this:
>
> lua5.2 -l mymod=long_and_unwieldy_module_name -i
It may not be the shortest way to write it, but you can use the following:
$ lua5.2 -l long_and_unwieldy_module_name -e 'mymod=long_and_unwieldy_module_name' -i
-- Roberto