一行代码解决:

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

点赞(0) 打赏

评论列表 共有 0 条评论

暂无评论

微信公众账号

微信扫一扫加关注

发表
评论
返回
顶部