in reply to Re: How to keep the line breaks in the arguments when I invoke Perl?
in thread How to keep the line breaks in the arguments when I invoke Perl?

Common shells (like bash, sh, csh, and ksh) use white space as a delimiter on the command line unless it is escaped or quoted. Thus,
$ echo 'abc \ > def' abc def $ echo abc \ > def abc def $
In a shell with a command history (like bash), you can see the shell's normalization in the command history.
  • Comment on Re^2: How to keep the line breaks in the arguments when I invoke Perl?
  • Download Code