linux – 在特定目录中设置环境变量

前端之家收集整理的这篇文章主要介绍了linux – 在特定目录中设置环境变量前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

这是一个.bashrc问题.
我想在.rvmrc这样的特定目录中为.bashrc设置“export FOO = bar”.

我在下面试过.

$touch ~/foo/.bashrc
$echo 'export RAILS_ENV=development' >> ~/foo/.bashrc
$cd foo/
$env|grep RAILS_ENV

但在这种情况下,RAILS_ENV不会被设置.

如果我设置为.rvmrc而不是.bashrc,它会通过!但是设置为.bashrc是更好的方法,因为我不需要安装rvm环境.

解决方案吗

最佳答案
在你的bashrc中设置:

PROMPT_COMMAND='[[ $PWD == "/foo/bar/" ]] && export FOO=BAR || unset FOO'

PROMPT_COMMAND变量的内容将在每次重写提示时执行(在实际写入之前)上面的命令检查$PWD变量(它保存shell的当前工作目录)对“/ foo / bar”如果它匹配它导出你的变量,如果没有,那么变量是未设置的.

例如

peteches@yog-sothoth$PROMPT_COMMAND='[[ $PWD == "/home/peteches/test" ]] && export FOO=BAR || unset FOO'
peteches@yog-sothoth$pwd
/home/peteches
peteches@yog-sothoth$cd test
peteches@yog-sothoth$pwd
/home/peteches/test
peteches@yog-sothoth$env | grep FOO
6:FOO=BAR
73:PROMPT_COMMAND=[[ $PWD == "/home/peteches/test" ]] && export FOO=BAR || unset FOO
peteches@yog-sothoth$cd ../
peteches@yog-sothoth$pwd
/home/peteches
peteches@yog-sothoth$env | grep FOO
72:PROMPT_COMMAND=[[ $PWD == "/home/peteches/test" ]] && export FOO=BAR || unset FOO
peteches@yog-sothoth$
原文链接:https://www.f2er.com/linux/440663.html

猜你在找的Linux相关文章