#!/bin/bash ssh root@192.168.1.102 << remotessh #首先要ssh上去,ssh的配置可以看我的上一篇文章,注意这里的<< remotessh #从这里开始都是在远程机器上执行命令啦 cd /tmp/test/ rm -f test.txt cat test.log | grep ‘test‘ >> test.txt echo "finished!" #执行完毕 exit #不要忘记退出远程机器 remotessh #还有这里的结尾哦,不要忘记
ps:本文来自==>https://blog.csdn.net/sn3009/article/details/52779642
原文地址:https://www.cnblogs.com/ZhaoHS/p/12201696.html
时间: 2024-11-08 07:16:09