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.
特定のディレクトリに入ったときに特定のファイルを取得して環境をセットアップする方法はありますか? rvm の機能に似ていますが、より一般的です。
cd を実行してからファイルをソースする関数を定義できます。この関数は、存在する場合、新しいディレクトリに .source_me をソースしようとします。
mycd () { builtin cd $@ [ $? -eq 0 -a -f .source_me ] && source .source_me }
関数の使用を有効にする
alias cd=mycd