As I could understand that the exclamation mark in the secret variable needs to be escaped.
But I could not find any documentation on the how to escape ! mark in the secret variable or for other special characters.
1 Like
I was having some issues with the $ character and to scape, I had to put $$ value to make it work.
3 Likes
Thank you for your reply.
Yes I have seen that $$ works great for escaping $ but I could not succeed with !! for escaping !. It would be a grate help if you have any suggestion to escape !
You can use the caret symbol: ^
Life saver. Thanks!