The most commonly used global scalar variable is the $_ variable. Many Perl functionsand operators modify the contents of $_ if you do not explicitly specify the scalarvariable on which they are to operate.The following functions and operators work with the $_ variable by default:l. The pattern-matching operator2. The substitution operator3. The translation operator4. The <> operator, if it appears in a while or for conditional expression5. The chop function6. The print function7. The study function
What does this mean : '$_' ?