markdown Bash - 在macOS上添加新的PATH

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown Bash - 在macOS上添加新的PATH相关的知识,希望对你有一定的参考价值。

## Example

### Manually
(edit ~/.bash_profile and append)

```
# Setting PATH for something
PATH="/new/dir/location/bin:${PATH}"
export PATH
```

### Terminal

```echo "export PATH=/new/dir/location/bin:$PATH" >> ~/.bash_profile```

___

### Then reload the profile
```source ~/.bash_profile```


**Note**

This reloads your bash profile in the current tab or session.
Either you enter this command on every tab or session, or restart Terminal.

以上是关于markdown Bash - 在macOS上添加新的PATH的主要内容,如果未能解决你的问题,请参考以下文章

markdown 在MacOs中拆分大文件

markdown 在macOS上安装RSymphony

markdown 在macOS上安装NodeJS和NPM

markdown 在macOS上的Unix套接字共享

markdown 在macOS Sierra上对Valet进行故障排除

markdown 使用Homebrew在macOS上安装MySQL 5.7