[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: Lua as replacement for Bash scripting
- From: Florian Weimer <fw@...>
- Date: Sun, 11 Jul 2010 21:25:45 +0200
* Alexander Gladysh:
> -- String: expansion, escaping
Ahem. The library should be structured in such a way that escaping is
not needed. Escaping is rather error-prone. In the shell, you have
to remember to use "$foo" instead of $foo in most places, so that's
not too difficult, but it would be easier to omit the quoting in some
Lua variant, I fear.