#!/usr/bin/expect
spawn passwd $1
expect "password:"
send "$2\r"
expect "Retype new password:"
interact