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?
In a shell with a command history (like bash), you can see the shell's normalization in the command history.$ echo 'abc \ > def' abc def $ echo abc \ > def abc def $
|
|---|