ブログ

読んで思い出す。忘れるために書く

Q. man を読んで理解するよりも使い方を知りたい

A. https://cheat.sh を利用する

curl でのアクセスも出来るので、次のように関数を定義してコマンドのように使うことも出来る

# Bash
# ~/.bashrc など適当な場所に定義する
function cheat() {
  curl "https://cheat.sh/$1"
}
cheat ssh-keygen # 関数呼び出し
# =>
# To generate an SSH key:
ssh-keygen -t rsa

# To generate a 4096-bit SSH key:
ssh-keygen -t rsa -b 4096

# To update a passphrase on a key
ssh-keygen -p -P old_passphrase -N new_passphrase -f /path/to/keyfile

# To remove a passphrase on a key
ssh-keygen -p -P old_passphrase -N '' -f /path/to/keyfile

# To generate a 4096 bit RSA key with a passphase and comment containing the user and hostname
ssh-keygen -t rsa -b 4096 -C "$USER@$HOSTNAME" -P passphrase

関連:

gouf.hatenablog.com

Link