Re: Oozie email action truncating the string containing newline chars

2018-05-08 Thread Buntu Dev
Thanks a lot for the pointer, this worked for me: SHELL_OUTPUT='John,28,1,0\n\ Jack,32,0,15\n\ Mary,45,23,12\n\ Jill,33,12,55' On Tue, May 8, 2018 at 2:11 PM, Peter Cseh wrote: > Hey! > The action output is treated and parsed as a serialized > java.util.Properties object. > You can test out w

Re: Oozie email action truncating the string containing newline chars

2018-05-08 Thread Peter Cseh
Hey! The action output is treated and parsed as a serialized java.util.Properties object. You can test out what works for you easily by using a Properties object and fool around with it. E.g. something like SHELL_OUTPUT='John,28,1,0 \ Jack,32,0,15 \ Mary,45,23,12 \ Jill,33,12,55' should work fin