一行代码解决:
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为英文输出
发表评论 取消回复