+1 vote
in Perl by

In Perl, there are some arguments that are used frequently. What are that arguments and what do they mean?

1 Answer

0 votes
by
-w (argument shows warning)

-d (use for debug)

-c (which compile only not run)

-e (which executes)

We can also use combination of these like:

-wd
...