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 |
Why -w argument is used with perl programs?
Create a function that is only available inside the scope where it is defined ?
How to find out the version of PERL being installed on your LINUX machine.
What is grep used for in perl?
What does delete function do in perl?
What is the difference between perl array and perl hash?
Explain strftime() function in perl?
How will you access an element of a perl array?
Explain the functioning of conditional structures in perl.
Which functions in Perl allows you to include a module file or a module and what is the difference between them?
Explain the internal working of cgi
what r the different type of function in perl ???