日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁 >

ssh 在远程主机执行本地脚本

發(fā)布時(shí)間:2025/7/14 50 豆豆
生活随笔 收集整理的這篇文章主要介紹了 ssh 在远程主机执行本地脚本 小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.

2019獨(dú)角獸企業(yè)重金招聘Python工程師標(biāo)準(zhǔn)>>>

需要在多臺(tái)服務(wù)器上執(zhí)行同樣的腳本,記錄下此方法。

ssh?user@hostname?-C?"/bin/bash"?<?test.sh


腳本帶參數(shù)怎么辦?

[root@?~]#?cat?local.sh? printf?'Argument?is?__%s__\n'?"$@" [root@?~]#?ssh?user@hostname?'cat|?bash?/dev/stdin?arg1?arg2?arg3'?<?local.sh? Argument?is?__arg1__ Argument?is?__arg2__ Argument?is?__arg3__


參考:

http://backreference.org/2011/08/10/running-local-script-remotely-with-arguments/



另附上一個(gè)自己用的更改centos6.x repo源為阿里云源的腳本

#!/bin/bash ##usage??:?change?repo?to?ailiyun #author?:?firxiao ##centos6.x####CentOS-Base.repo## function?centos6(){ mv?/etc/yum.repos.d/CentOS-Base.repo?/etc/yum.repos.d/CentOS-Base.repo.backup wget?-O?/etc/yum.repos.d/CentOS-Base.repo?http://mirrors.aliyun.com/repo/Centos-6.repo }##epel.repo## function?epel(){ mv?/etc/yum.repos.d/epel.repo?/etc/yum.repos.d/epel.repo.backup mv?/etc/yum.repos.d/epel-testing.repo?/etc/yum.repos.d/epel-testing.repo.backup wget?-O?/etc/yum.repos.d/epel.repo?http://mirrors.aliyun.com/repo/epel-6.repo } if?[?!?-x?"/usr/bin/wget"?];then { yum?install?wget?-y?&&?centos6?&&?epel } else { centos6?&&?epel } fi


轉(zhuǎn)載于:https://my.oschina.net/firxiao/blog/308665

總結(jié)

以上是生活随笔為你收集整理的ssh 在远程主机执行本地脚本的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯(cuò),歡迎將生活随笔推薦給好友。