to-alt-239

set StrictHostKeyChecking "no" at ssh_config to avoid asking.
and always remove $HOME/.ssh/known_hosts before ssh login.


Use shell below:

#!/bin/sh
rm $HOME/.ssh/known_hosts
ssh "$@"