I\'d like a command that ssh\'es into a machine, runs a command (cd or execute a script or su), and then gives me the shell. Passing a command to ssh seems to always exit.>
Variation on the other answers really, use the -t option of ssh to force pseudo-tty allocation:
ssh -t me@machine ./executeMyScript '&&' bash -i