対話を自動化するコマンド ログイン後よく実行するコマンドを自動で実行できるようしてみる。
~/bin/su.sh
#!/bin/sh PW="[PASSWORD]" expect -c " spawn sudo su - expect matsui: send -- ${PW}\n interact "
$ chmod 755 ~/bin/su.sh
~/.bashrc
if [ -f ./bin/su.sh ]; then ./bin/su.sh fi