linux系统中如何使用python执行source /etc/profile命令
时间: 2023-08-14 13:04:57 浏览: 316
linux下的.profile
在Linux系统中,可以通过使用python的os模块中的system函数来执行shell命令。因此,要执行source /etc/profile命令,只需在python中编写以下代码:
```
import os
os.system('source /etc/profile')
```
执行该python脚本即可使得/etc/profile中定义的环境变量在当前的shell中生效。
阅读全文