I am attempting to set a character set of IBM850 on slackware linux for a particular application (epic5).

Im using rxvt-unicode and have setup LANG/LC_*=en_US. Now if I set the encoding to IBM850 in kde's konsole program im able to display certain characters correctly. I'd rather not use IBM850 for everything; is there a way to set/alias a command for a per application execution?

Ive tried things like:

LC_CTYPE=IBM850 epic5
LC_ALL=IBM850 epic5

No success. Any help would be appreciated

link|improve this question
feedback

2 Answers

That notation for specifying environment variables is only understood by shells. In order to use it without a shell you need to use env.

env LC_ALL=en_US.IBM850 epic5
link|improve this answer
Ive tried the above with no luck; rxvt-unicode requires to be in the same encoding as the application. With this I tried "env LC_CTYPE=IBM850 urxvt -e epic5" with no success. – SimmaDoWN Jul 9 '10 at 2:41
feedback

Does

export LC_ALL=IBM850
epic5

work?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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