2 Star 1 Fork 1

ltfafei/shell_script

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
ssh_remote_command_execute.sh 456 Bytes
一键复制 编辑 原始数据 按行查看 历史
ltfafei 提交于 2020-06-11 22:10 . one update script
#!/bin/bash
#original: wangfeng
#Write by afei
cat >> /etc/profile.d/getdate.sh << "EOF"
# 获取昨天日期函数
yesterday()
{
date +'%Y-%m-%d' -d '-1 days'
}
# 获取今天日期函数
today()
{
date +'%Y-%m-%d'
}
# ssh远程免交互执行函数
autologin_ssh ()
{
expect -c "set timeout -1
spawn -noecho ssh -o StrictHostKeyChecking=no $2 ${@:3};
expect *assword:*;
send -- $1\r;
interact;";
}
EOF
sleep 3
source /etc/profile.d/getdate.sh
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Shell
1
https://gitee.com/afei00123/shell_script.git
git@gitee.com:afei00123/shell_script.git
afei00123
shell_script
shell_script
master

搜索帮助