gpt4 book ai didi

perl - 如何以隐藏方式获取字符串

转载 作者:行者123 更新时间:2023-12-01 06:51:00 25 4
gpt4 key购买 nike

这个问题在这里已经有了答案:





How can I enter a password using Perl and replace the characters with '*'?

(7 个回答)


8年前关闭。




我是 perl 的新手

我想以隐形方式获取密码

例子:
输入密码...?

**

它可以是空格或任何其他符号

同时给出指定字符串的输入

它不应该被其他人看到,即使是输入的人

有没有办法在perl中以隐藏的方式获取输入

最佳答案

将系统函数与 stty 命令一起使用。

print "Enter The Password : ";  
system ("stty -echo");
my $password = <STDIN>;
system ("stty echo");

chomp $password;

关于perl - 如何以隐藏方式获取字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17289791/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com