打包脚本集中管理

This commit is contained in:
2022-12-21 08:43:58 +08:00
parent 1f1cac75f1
commit 6ae2164d52
3 changed files with 38 additions and 3 deletions

13
shell/update.sh Normal file
View File

@@ -0,0 +1,13 @@
#!/usr/bin/expect
set Name [lindex $argv 0]
set Prj [lindex $argv 1]
puts "更新$Name"
cd $Prj
spawn git pull
expect "Username"
send "aixianling\r"
expect "Password"
send "axl123.0\r"
interact
cd ..