in reply to Re: Perl Command Line Arguments
in thread Perl Command Line Arguments

Can you please give an example of quotes?

Replies are listed 'Best First'.
Re^3: Perl Command Line Arguments
by AR (Friar) on Jun 02, 2010 at 15:20 UTC
    $ perl -e 'print ">$_<\n" for @ARGV' A B C D >A< >B< >C< >D< $ perl -e 'print ">$_<\n" for @ARGV' "A B C D" >A B C D<