一行代码解决:
bash
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
~/.bash_profile
添加内容:
bash
LC_CTYPE=zh_CN.UTF-8
LANG=en_US.UTF-8
export LC_CTYPE
export LANG
生效
source ~/.bash_profile
验证
验证是否是英文处处环境了
bash
echo $LANG
其他验证:
bash
lscpu