As described in the docs, Tidal can pass on job output via the command line. However, my job output can sometimes contain single and/or double quotes.
This could then e.g. lead to the following, which won't run because of unbalanced quotes
run some_script 'sample ' job output'
Is there a workaround so that quotes can get stripped from the job output before it is passed on? I tried using a variable, which seems to work, but unfortunately can only hold 255 characters.
Thanks.