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?

0
2 comments

From what I can see, ls -l ; ls -a doesn't work in 2018.1 as well. Where did you put it previously, in the Program field?

Please try using /bin/bash as Program and -c "ls -l ; ls -a" as Arguments.

0

Your solution work, thx!

Previously I put the first command in Program "ls -l" and the second one in Arguments "; ls -a".

0

Please sign in to leave a comment.