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.
自作インストールをグループ化する方法はありますか?
もののコレクションをインストールしたいとしましょう-homebrew/versions / mysql51、homebrew / versions / ruby192、rvm。
しかし、別のコレクション(mysql、ruby、rbenv)に切り替えられるようにもしたいと思います。そして、私が切り替えると、競合しないように、他のものはオフになります。
これを行う方法はありますか?
正確にフォローするかどうかはわかりませんが、リンク解除/リンクをスクリプト化できます。
$ ./coll1 $ ./coll2
ここで、coll1とcoll2はスクリプト、bash関数、またはエイリアスです。
coll1() { brew unlink mysql51 brew unlink ruby192 } coll2() { brew link mysql brew link ruby }