Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
setenv を使用して環境変数を設定したい:
setenv NODE_ENV localhost
しかし setenv は、コマンドが見つからないというエラーを出します。setenv に相当する MAC OSX を実行する方法を知っている人はいますか? ありがとう!
あなたが欲しいexport
export
NODE_ENV=localhost export NODE_ENV
または1行で export NODE_ENV=localhost
export NODE_ENV=localhost
これはOSX自体とは何の関係もありません。シェルとしてのbash vs (t)cshとはもっと関係があります
Mac に最適なのは次のとおりです。
launchctl setenv NODE_ENV localhost
変数を永続化し、再起動を避けたい場合。
見る:
http://www.dowdandassociates.com/blog/content/howto-set-an-environment-variable-in-mac-os-x-slash-etc-slash-launchd-dot-conf/