Linux远程执行Shell命令或脚本

## 远程执行shell命令

ssh [user]@[server] '[command]'

# eg.
ssh root@192.168.1.1 'uptime'

 

## 远程执行本地shell脚本

ssh [user]@[server] 'bash -s' < [local_script]

# eg.
ssh root@192.168.1.1 'bash -s' < local_script.sh
posted @ 2016-10-25 16:18  savokiss  阅读(4368)  评论(0编辑  收藏  举报