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

Announcements
Join us in Toronto Sept 9th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Ashok200792
Contributor
Contributor

SSH_1 how to get output based on the commands line

SSH_1 how to get output based on the commands line .

 

we use two commands like ,

 

1)pwd

2)df -h

 

So ,we get output totally by using ((String)globalMap.get("tSSH_1_STDOUT")) 

 

We want take output like "pwd" separate and "df -h" separate .

Labels (2)
1 Solution

Accepted Solutions
TRF
Champion II
Champion II

Hi,

I'm afraid you can't split output. You need to consider 1 SSH call = 1 output, no matter the number of command to execute.

A workaround should be to redirect the output to a file (or a file for each command), then to read the file from your job.

View solution in original post

2 Replies
TRF
Champion II
Champion II

Hi,

I'm afraid you can't split output. You need to consider 1 SSH call = 1 output, no matter the number of command to execute.

A workaround should be to redirect the output to a file (or a file for each command), then to read the file from your job.

Ashok200792
Contributor
Contributor
Author

Yeah we accept!! Its cannot split we can find the solution for another way to get the output based on the multiple commands !!!

Thanks a lot,

Ashok M