in reply to XML input through STDIN
echo is what is stripping the quotes,but probably not where you expect
try writing directly to a file rather than using echo
open (my $out,'>>',/temp/MyLog.log) or die 'cant open'; while (<STDIN>) { print ;}
Added:
To understand what echo is doing paste this at a command line
What you get back isecho "<param name="assignedgroup">fraud</param>"
<param name=assignedgroup>fraud</param>
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: XML input through STDIN
by choroba (Cardinal) on Jun 03, 2017 at 07:46 UTC | |
by morgon (Priest) on Jun 04, 2017 at 01:04 UTC | |
by choroba (Cardinal) on Jun 04, 2017 at 10:00 UTC | |
by LanX (Saint) on Jun 04, 2017 at 11:15 UTC | |
|
Re^2: XML input through STDIN
by Jazz-jj (Novice) on Jun 03, 2017 at 06:05 UTC |