标签: ssh
通过ssh命令服务器。 每个命令的输出必须分别存储。
ssh -i ~/c.pem ubuntu@server 'cd /tmp' ssh -i ~/c.pem ubuntu@server 'pwd'
运行此代码时,我希望输出“ / tmp”。 如何在上一个会话中运行多个命令?
答案 0 :(得分:0)
在命令之间使用;来顺序执行它们。
;
ssh -i ~/c.pem ubuntu@server 'cd /tmp; pwd'