http://qs321.pair.com?node_id=11101357


in reply to Re^2: Sort alphabetically from file
in thread Sort alphabetically from file

You'll need to open the file first. eg:

open my $in, '<', 'file.txt' or die "Cannot open file for reading: $!" +; print sort { ($a =~ /\S+\n$/g)[0] cmp ($b =~ /\S+\n$/g)[0] } <$in>; close $in;

See open and close for all the details.

Replies are listed 'Best First'.
Re^4: Sort alphabetically from file
by edujs7 (Novice) on Jun 15, 2019 at 09:49 UTC
    This worked - thanks so much :)