What arguments do you frequently use for the Perl
interpreter and what do they mean?
Answers were Sorted based on User's Feedback
Answer / vipul dalwala
Mainly we are using -w argument for perl interpreter. That
means you are turning on warning messages.
Is This Answer Correct ? | 14 Yes | 5 No |
Answer / sandeep kumar mall
Hi The various command line arguments are -e executes the
prog given as an argument-d start perl debugger on the file
name specified as an argument-c compile the file given as an
argument
Is This Answer Correct ? | 11 Yes | 4 No |
Answer / jamal
-w Which show warning
-d Which debug
-c Which compile only not run
-e Which executes
Is This Answer Correct ? | 8 Yes | 2 No |
Answer / sanjay garothaya
-w to show warning
-d to debug
-c to compile only not run
we can also use combination of these like
-wd
Is This Answer Correct ? | 4 Yes | 0 No |
Explain chomp, chop, cpan, tk.
What are the various flags/arguments that can be used while executing a perl program?
What are the purpose of close(), getc() and read() functions?
Explain the difference between my and local?
What is the use of "stderr()"?
What is the difference between use and require in perl programming?
Explain 'grep' function.
How do I send e-mail from a Perl/CGI program on a Unix system?
“The methods defined in the parent class will always override the methods defined in the base class”. What does this statement means?
Differentiate use and require?
How to renaming a file in perl programming?
What is grep used for in perl?