一、远程执行本地脚本
ssh username@服务器IP地址 “bash”< **.sh
多台服务器可以用循环来实现。
ssh root@ip "bash" < **.sh $name $name2 # name为变量,此方法可以实现远程脚本调用本地变量。
二、远程执行命令
ssh username@IP "cd /data/gamedate;ll"
双引号可以执行多条命令并用‘;‘分隔命令
原文地址:http://gebilaozhang.blog.51cto.com/10403200/1673546