Last active
December 23, 2015 12:29
-
-
Save pataiji/6635292 to your computer and use it in GitHub Desktop.
~/.ssh/config がひたすら伸びていくのが嫌だったので勢いで作った。そのうちちゃんと実装し直す。
~/.ssh/config.d/ 以下のconfigファイルを ~/.ssh/config にマージする。ただそれだけ。
~/.bash_profile にでも書いて使って下さい。
実行すると既存の~/.ssh/configを上書きしちゃうので必ずバックアップを取ることをおすすめします。
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function vissh { | |
vi ~/.ssh/config.d/$1 | |
cat ~/.ssh/config.d/* > ~/.ssh/config | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment