in reply to piping commands to perl via standard input on the Win32 command line
So apparently the DOS echo command can/should be used without quotes, and perhaps uses the next recognized DOS operator (in this case a pipe) as a delimiter?C:>echo print qq/Hello world!\n/ | perl Hello world! C:>echo print qq/Hello world!\n/ print qq/Hello world!\n/
|
|---|