in reply to regex to capture files that start with a lowercase letter
use Path::Tiny qw/ path /; my @files = path( 'anypath' )->children( qr/^[a-z].+\.txt$/ ); [download]