centos下用expect自动输入git账号密码拉取代码
线上每次拉取代码还要手动输入账号密码,百度了一下expect的用法写了个脚本记录一下
新建shell脚本 内容如下
#!/usr/bin/expect
set user "git账号"
set pass "密码"
set timeout 10
spawn git pull # spawn启动新的进程
expect "Username*" # 匹配username*
send "$user\n" #发送账号到进程内
expect "Password*" # 匹配password
send "$pass\n" #发送密码到进程内
expect eof
保存脚本pull.sh到线上仓库根目录运行以下内容
expect -f pull.sh #运行脚本
世人慌慌张张,不过图碎银几两