- 论坛徽章:
- 0
|
如果出现test' already exists这个信息了,就证明系统里边有这个用户,直接把它添加到指定组里就行了..想不明白你为什么非要用判断?
貌似昨天在群里碰见一个类似的问题..
#!/usr/bin/expect -f
set userfile [open [lindex $argv ]]
while { [gets $userfile user] } {
spawn ssh root@uhost
expect {
"(yes/no)?" {send "yes\r";exp_continue}
"password:" {send "$passwd\r";exp_continue}
}
expect {
" ~]#" {send "useradd $user\r";exp_continue}
"already exists." {send "usermod -g wheel $user\r";send "exit\r"}
}
}
没调试过....但大概就是这个意思..根据你的情况稍微改改应该能弄...没有用户就添加用户,有就直接加到wheel组里.这里的"already exists." 可能会因为不同的版本返回的信息不同...你用到你实际的机器上抓取信息替换一下..只要你的机器不是有好几个版本的linux.应该没什么问题.
[ 本帖最后由 从未被和谐 于 2009-7-15 17:11 编辑 ] |
|