Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I have a Tssh component which fires a cat command to a file
eg: cat file1.txt
Now I need to save the file1.txt components in a string variable. How can i achieve this?
Thanks
Ajinkya
Hi,
yes, you can
select checkbox for save output to variable
and use
((String)globalMap.get("tSSH_1_STDOUT"))
Hi,
yes, you can
select checkbox for save output to variable
and use
((String)globalMap.get("tSSH_1_STDOUT"))
Okay, it is working now.
Thanks.
Earlier I had not selected to store the output on global variable.
After doing that, I am able to store the output to a String.
Thanks!!!