Wiki »
何かしらの理由で自動ログインを行う場合のスクリプト
#!/bin/sh PASS="パスワード" expect -c " spawn ssh ユーザ名@ホスト名 expect \"Password:\" sleep 1 send \"${PASS}\n\" interact "