Help for this page
use strict; use warnings; use Path::Tiny; my $filename = "foobar.txt"; my @lines = path( $filename )->lines({ chomp => 1 }); # done!