摘要:
在网格portal中,有时候需要web服务器中实现身份切换,这个脚本的内容可以实现: cat test.sh #!/usr/bin/expect -fspawn -noecho su [lindex $argv 0] -c [lindex $argv 2]set password [lindex $argv 1]expect "*assword:"send "$password\r"expect eofexit调用脚本,以用户user的身份执行命令./test.sh user user's-password "ls -ivh /home/user" 这样就可以在web程序中实现身份切换来执行 阅读全文
摘要:
自动实现页面跳转的3种方法 <? //PHP自带函数 Header("Location: http://www.phpx.com"); ?> <? //利用meta echo "<meta http-equiv=refresh content='0; url=http://www.phpx.com'>"; ?> <? //利用Javasc... 阅读全文