mac OS配置用户全局环境变量(设置字符集为UTF8)

  mac OS系统跟linux系统一样也是将用户的全局环境变量保存在.bash_profile配置文件中,只是mac OS默认没有此文件。

1、创建.bash_profile文件

vi ~/.bash_profile

2、添加环境变量

#!/bin/bash
  
LANG=zh_CN.UTF-8
export LANG

3、编译

source .bash_profile

  

  

原文地址:https://www.cnblogs.com/rslai/p/9321808.html