1
0

ref: 构建工具重构

This commit is contained in:
TsMask
2025-03-19 17:21:47 +08:00
parent f2e43b0fc4
commit b2f867b86c
211 changed files with 1047 additions and 105510 deletions

View File

@@ -0,0 +1,38 @@
#!/bin/bash
tooldir=/usr/local/bin
toollist="zip unzip"
# distribute to hosts in file nehosts
while read line
do
if [[ "$line" =~ ^[^[:space:]]*# || -z "$line" ]]; then
continue
fi
user=`echo $line | cut -d " " -f 2`
ip=`echo $line | cut -d " " -f 1`
passwd=`echo $line | cut -d " " -f 3`
for toolname in $toollist;do
expect <<EOF
set timeout 10
spawn scp $tooldir/$toolname $user@$ip:/tmp
expect {
"yes/no" { send "yes\n";exp_continue }
"password" { send "$passwd\n" }
}
expect "password" { send "$passwd\n" }
EOF
done
for toolname in $toollist;do
expect <<EOF
set timeout 10
spawn ssh $user@$ip sudo mv /tmp/$toolname $tooldir
expect {
"yes/no" { send "yes\n";exp_continue }
"password" { send "$passwd\n" }
}
expect "password" { send "$passwd\n" }
EOF
done
done < nehosts