Remote SSH external tool run multiple commands once
I wan't to run multiple commands one, until version 2018.2 everything was ok if I put in input field command something like this: "ls -l ; ls -a", now this will return error. How should I wrote this commands to run?
Please sign in to leave a comment.
From what I can see,
ls -l ; ls -adoesn't work in 2018.1 as well. Where did you put it previously, in theProgramfield?Please try using
/bin/bashasProgramand-c "ls -l ; ls -a"asArguments.Your solution work, thx!
Previously I put the first command in Program "ls -l" and the second one in Arguments "; ls -a".