从.bash_profile中导出目录中的所有文件

前端之家收集整理的这篇文章主要介绍了从.bash_profile中导出目录中的所有文件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我需要允许多个应用程序附加到系统变量(在这种情况下为$ PYTHONPATH)。我正在考虑指定一个目录,每个应用程序可以添加一个模块(例如.bash_profile_modulename)。在〜/ .bash_profile中试过这样的东西:
find /home/mike/ -name ".bash_profile_*" | while read FILE; do
source "$FILE"
done;

但它似乎没有起作用。

岂不
for f in ~/.bash_profile_*; do source $f; done

足够了

编辑:ls〜/ .bash_ *的额外层简化为引导bash globbing。

原文链接:https://www.f2er.com/bash/388281.html

猜你在找的Bash相关文章