欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

[ZT]读取密码的shell实例

程序员文章站 2022-03-04 20:44:58
...
#!/bin/bash

ReadPassword(){  
    #turn off terminal echo to prevent peeping!  
    echo -n ">>> "$1  
    stty_orig=`stty -g`    
    stty -echo    
    read tempstr  
    stty $stty_orig  
    eval "$2=$tempstr"  
    echo "******"  
}  
   
ReadString(){  
    echo -n ">>> "$1  
    read tempstr  
    eval "$2=$tempstr"  
}  

ReadPassword "Please input your password:" MYPASSWD

echo $MYPASSWD
相关标签: Bash

上一篇: 对象和类

下一篇: abs符号