You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
474 B

7 years ago
source
===
在当前Shell环境中从指定文件读取和执行命令命令返回退出状态。
## 补充说明
**source命令** 在当前Shell环境中从指定文件读取和执行命令命令返回退出状态。
### 语法
```
source [文件名] [参数]
```
### 例子
读取和执行/root/.bash_profile文件。
```bash
[root@localhost ~]# source ~/.bash_profile
```
<!-- Linux命令行搜索引擎https://jaywcjlove.github.io/linux-command/ -->