9
9

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

1分で実現できる有用な技術Advent Calendar 2013

Day 5

特定のディレクトリのみで使いたい環境変数

Last updated at Posted at 2013-12-05

特定のプロジェクトのみで使いたい環境変数とかありますよね、特にherokuとか使ってると。

direnvというgoで書かれた便利ライブラリがあるんですがインストールすらめんどくさい時はshellのchpwdを使うと便利です。

function chpwd() {
  if [[ $PWD/ == ~/Projects/project_name/* ]]; then
    export VARIABLE
  else
    unset VARIABLE
  fi
}

if [[ $PWD/ == ~/Projects/project_name/* ]]; then
  export VARIABLE
fi
9
9
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
9
9

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?