sub generate_random_string { my $res = ''; $res.= chr int rand(26)+96 for 1..8; return $res; }