Hello,
I am deploying a small desktop agent that requires a fairly long parameter with nested quotes that I am not sure how to code properly.
Example:
nessuscli agent link --key=XXXXXXXXXXXXXX --host=XXX.XXX.COM --port=XXX --groups=“XXXXX XXXXX”
Since the parameter contains spaces I would need to wrap the parameter in quotes
Example:
“nessuscli agent link --key=XXXXXXXXXXXXXX --host=XXX.XXX.COM --port=XXX --groups=“XXXXX XXXXX””
However, when running the script with the nested quotes, I get an error.
How does one code a parameter correctly with nested quotes?
Thank you.