【bash】设置shell为英文输出

一行代码解决:

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
相关推荐
Dream_Snowar几秒前
速通Python 第三节
开发语言·python
高山我梦口香糖1 小时前
[react]searchParams转普通对象
开发语言·前端·javascript
信号处理学渣1 小时前
matlab画图,选择性显示legend标签
开发语言·matlab
红龙创客1 小时前
某狐畅游24校招-C++开发岗笔试(单选题)
开发语言·c++
jasmine s1 小时前
Pandas
开发语言·python
biomooc2 小时前
R 语言 | 绘图的文字格式(绘制上标、下标、斜体、文字标注等)
开发语言·r语言
骇客野人2 小时前
【JAVA】JAVA接口公共返回体ResponseData封装
java·开发语言
black^sugar2 小时前
纯前端实现更新检测
开发语言·前端·javascript
404NooFound2 小时前
Python轻量级NoSQL数据库TinyDB
开发语言·python·nosql
用余生去守护3 小时前
python报错系列(16)--pyinstaller ????????
开发语言·python