gpt4 book ai didi

perl - 在询问 时建议一个值

转载 作者:行者123 更新时间:2023-12-02 04:44:29 25 4
gpt4 key购买 nike

我希望用户只需按 enter 键,perl 脚本就可以继续。示例:

# in the line below the 'y' should be given as a suggestion, 
# thus only pressing "enter" to continue.

print "Are you over 18? (y/n): ";
chomp(my $allow = <STDIN>);

最佳答案

print "Are you over 18? (Y/n): "; 
chomp(my $allow = <STDIN>);
$allow ||= "y";

if (lc($allow) ne "y") {
die "you're not allowed\n";
}

关于perl - 在询问 <STDIN> 时建议一个值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20076698/

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