Terminal Language – How to Change Language Only for Terminal

languagelocalesystem-language

I'm using Arabic as the default language but there are some issues when displaying it in terminal. So I want to change the language only in terminal to English, how can I do that ?

Best Answer

You can add a line

export LANG=C

to the end of your ~/.bashrc file and restart the terminal.

All program output will be in English.

Related Question