Tie::File represents a regular text file as a Perl array. Each element in the array corresponds to a record in the file.
So $#content will return index of the last element of '@content' array(which is one less than the length of the array, since arrays start from zero).
for getting the size of an array.