Running command with spaces in value?Solved
What's the proper way to do a hostname change in TimedExecute?  I always just end up with the first word of the name I want.
Use escaped quotation marks per JSON.

"server.hostname \"Hello world\""
Thank you, I thought backward slashes were only for \n
In response to Covfefe ():
Thank you, I thought backward slashes were only for \n
\ is commonly used in a lot of languages for escaping things. The \ in \n is part of that new line, not for escaping.
Locked automatically