in reply to User input taking capslock into account
use warnings; use strict; my $input = <STDIN>; chomp $input; exit if $input eq 'e' or $input eq 'E'; [download]
exit if $input =~ /^e$/i; [download]