用法:


ssh -l <user> <host> "<command>"

示例如下:


ssh -l ubuntu 127.0.0.1 "echo hello"

如果需要分配一个 TTY 的话,添加 -t 参数,示例如下:


ssh -t -l ubuntu 127.0.0.1 "echo hello"