On 2014-11-03 14:32, Greg Reagle wrote:
> It occurred to me that environment variables can be used to configure a
> program, instead of programming in a parser or extension language
Things to think over and critique:
http://www.catb.org/esr/writings/taoup/html/ch10s04.html
extern char **environ;
int main (int argc, char **argv) {
environ = argv;
Received on Tue Nov 04 2014 - 03:15:57 CET