Perl has quite a few special variables such as @F, $!, %! … etc. Where are all Perl’s special variables documented?
Perl has quite a few special variables such as @F , $! , %!
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
All special variables used by Perl are documented in perldoc perlvar. You can view this document on your computer by running
The documentation for a specific special variable can also be accessed at the command line using
perldoc -v:You may need to escape/quote some variables to avoid interpolation by your shell:
or
if you are using
cmd.exe.For more information: