Tente:
mosh user@host -- /path/to/some/shell
A forma geral é:
mosh [options] -- user@host [command]
Se você não especificar um comando, mosh gera um shell de login por padrão.
Com o ssh, posso fazer algo como o seguinte:
ssh user@host -t /path/to/some/shell
Como posso iniciar automaticamente um shell no servidor com mosh
?
Eu tentei com
mosh user@host -ssh /path/to/some/shell
e com:
mosh user@host -ssh "ssh -t /path/to/some/shell"
sem sorte. Isso é possível?