本文主要是介绍【bash】设置shell为英文输出,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
一行代码解决:
source ~/.bash_profile;echo "当前的设置是:$LANG";
echo "LC_CTYPE=zh_CN.UTF-8" >> ~/.bash_profile;echo "LANG=en_US.UTF-8" >> ~/.bash_profile;echo "export LC_CTYPE" >> ~/.bash_profile;echo "export LANG" >> ~/.bash_profile;source ~/.bash_profile;echo $LANG;
问题
为了方便在不同语言的设备上开发,统一使用英文的shell输出做为硬件判断的唯一途径
解决
编辑文件
~/.bash_profile
添加内容:
LC_CTYPE=zh_CN.UTF-8
LANG=en_US.UTF-8
export LC_CTYPE
export LANG
生效
source ~/.bash_profile
验证
验证是否是英文处处环境了
echo $LANG
其他验证:
lscpu
这篇关于【bash】设置shell为英文输出的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!