次を使用して、gist.github.com 内に配置された bash スクリプトを実行できることを知っています。
bash -c "$(curl -fsSL https://raw.github.com/gist/5126919)" <arg0> <arg1>
期待スクリプトに対して同じことを行うにはどうすればよいですか?
ここにサンプルがあります:
https://gist.github.com/simkimsia/5126919
#!/usr/bin/expect -f
set CHANGESHELL_FOR_USER [lindex $argv 0];
set PASSWORD_OF_USER [lindex $argv 1];
########################################
## switch to another user
## read this http://stackoverflow.com/a/1988255/80353
########################################
sudo -u $CHANGESHELL_FOR_USER -H sh -c "chsh -s /bin/bash"
expect "*?assword:*" {send -- "$PASSWORD_OF_USER\r";}
expect eof
私の目的は、特定のユーザーに対してchshすることです。