Hi,
Execute Command from SSH library does not keep sessions among
different 'Execute Command'.
Execute Command works like that:
- opens a new session
- issues the command (in Your case 'cd /path')
- closes the session
If You want to stay in the same session, You can either:
- use 'Write' keyword from the SSH library
- write a script with all Your commands and execute it
- give commands after ';', like: Execute Command | cd /path; pwd; ls |
Believe me, You're not the first one having this problem :-)
Marcin