码迷,mamicode.com
首页 > 系统相关 > 详细

CentOS 6.5 shell中su切换自动输入密码

时间:2014-12-25 18:43:07      阅读:174      评论:0      收藏:0      [点我收藏+]

标签:su expect

yum -y install expect


login as normal user:

vi su.exp

#!/usr/bin/expect
set timeout 30
spawn su -
expect "Password:"
send "root-pass\r"
interact


chmod +x su.exp

./su.exp

本文出自 “Ilovecat(个人笔记)” 博客,请务必保留此出处http://hj192837.blog.51cto.com/655995/1595972

CentOS 6.5 shell中su切换自动输入密码

标签:su expect

原文地址:http://hj192837.blog.51cto.com/655995/1595972

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!