lua-users home
lua-l archive

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


Am 19.01.2017 um 10:49 schrieb Dirk Laurie:
2017-01-19 11:10 GMT+02:00 Charles Heywood <vandor2012@gmail.com>:

If you still want to continue with doing this, chances are the best bet is
to obfuscate the source before compilation and distribution. That would make
it harder to understand - but not impossible.

On a Un*x system, you can simply mark the executable execute-only.
    chmod go-rw+x myprog.lua

No, that won't work. Any script or executable has to be readable to be executed.

- Bernd