Google News
logo
Perl - Interview Questions
What are the various flags/arguments that can be used while executing a Perl program?
The following arguments can be used while executing a Perl program.
 
w – argument shows a warning.
d – used for debugging.
c – compiles only do not run.
e – execute.

We can also use a combination of arguments like :
pl –wd filename.pl
Advertisement