vote up 0 vote down star

Complete C++ i18n gettext() “hello world” example. sets the LANG environment variable using export before executing the program (Linux):

export LANG=es_MX.utf8
./hellogt

Is there a way to set the language just while executing hellogt, like a command line argument? This would be handy for testing programs.

flag

57% accept rate

2 Answers

vote up 1 vote down check

In ksh, bash, and similar shells,

LANG=es_MX.utf8 ./hellogt

will set LANG=es_MX.utf8 only for the invocation of ./hellogt.

More portably, there is a program called env

env LANG=es_MX.utf8 ./hellogt

which will set environment variables and run the program specified. This works in all shells, including csh and traditional sh (which do not support the first method).

link|flag
vote up 3 vote down

You mean something like:

LANG=es_MX.utf8 ./hellogt

? Or maybe you mean you want to parse the commandline (argv), find the language passed in, and pass it to setlocale?

link|flag
For testing programs so without modifying the code. – C.W.Holeman II Jun 23 at 16:51
So, the first one. – Tanktalus Jun 23 at 17:48

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.