jshitaの日記

勉強したことを書いていきます。

2018-03-23から1日間の記事一覧

ssh の config ファイル作成(個人用メモ)

ssh の config ファイルを作成するスクリプトを作った。 cd ~ if [ ! -d ~/.ssh ]; then echo "~/.ssh ディレクトリを作成しました" mkdir ~/.ssh fi if [ ! -f ~/.ssh/config ]; then echo "config ファイルを作成しました。適宜内容を編集してください" to…