Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Maximize ROI with Qlik Professional Services – Expert Guidance, Faster Results: Explore Qlik Services
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

[resolved] Command settings in tSSH

Hi there,
I want to include the following lines from my Unix .profile to the Command in the tSSH component. I got syntax errors at the lines
"REV=`echo "\033 \$PWD:$NORM'"
How do I use single quote, double quote and backstick in the command lines?
Thanks very much.
Labels (2)
1 Solution

Accepted Solutions
Anonymous
Not applicable
Author

Hello
How do I use single quote, double quote and backstick in the command lines?

You need escape these special characters by "\", eg:
"REV=`echo \"\\033[7m\"`"
Best regards
Shong

View solution in original post

2 Replies
Anonymous
Not applicable
Author

Hello
How do I use single quote, double quote and backstick in the command lines?

You need escape these special characters by "\", eg:
"REV=`echo \"\\033[7m\"`"
Best regards
Shong
Anonymous
Not applicable
Author

There are no more errors. Thank you so much Shong.