What purpose does each of the following serve: -w, strict, -
T ?
Answer Posted / kalai
-w enables the warnings mode in perl
-T is enables the Taint mode it performs some checks how
your program is using the data passed to it
-w, -T,-d, -D are called the command line switches
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How to create a package?
How are parameters passed to subroutines in perl?
What is the usage of -i and 0s options?
How to print escaping characters inside a string in perl?
What does Perl do if you try to exploit the execve(2) race involving setuid scripts?
Explain perl.
Where do we require ‘chomp’ and what does it mean?
You want to concatenate strings with perl. How would you do that?
What does length(%HASH) produce if you have thirty-seven random keys in a newly created hash?
Which functions in perl allows you to include a module file. State their differences.
How do I replace every TAB character in a file with a comma?
Explain about typeglobs?
Explain chomp?
What does the q{ } operator do?
Is there any way to add two arrays together?