Re: confusion with splitting columns using [-n, -n] (e.g; my ( $country, $bytes ) = ( split )[ -2, -1 ])



-2 and -1 are the indexes used by split which tells -1 is the last
column selected by split in your case its the bytes column. and -2 is
the country column.


.