linux 远程执行命令

#!/bin/bash

### 执行远程 操作
ssh root@192.168.243.129 > /dev/null 2>&1 << remotessh
cd /usr/local/test
touch remote.txt
exit
remotessh

在128服务器上执行 如上 脚本,将会在239服务器 /usr/local/test 目录下新建 remote.txt 文件。

<< remotessh ... remotessh 这个是一对标识符,自己可以随便命令但是要保持名称一致。
exit :代表退出远程节点。

posted @ 2020-07-07 17:21  明天,你好啊  阅读(1261)  评论(0编辑  收藏  举报