in reply to Re^2: Quotable Quotes
in thread Quotable Quotes
C:\>perl -e "print @ARGV" "a r g v" a r g v C:\> C:\>perl -e "print @ARGV" "\"a r g v\"" "a r g v" C:\> C:\>"echo 1" '"echo 1"' is not recognized as an internal or external command, operable program or batch file. C:\> C:\>cmd /C "echo 1" 1 C:\> C:\>cmd /C "\"echo 1\"" '\"echo 1\"' is not recognized as an internal or external command, operable program or batch file. C:\>
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Quotable Quotes
by Anonymous Monk on Sep 07, 2007 at 11:48 UTC |