My Java application has to work like this:
- User select bash commands in GUI and press "send."
- Application return distinct and independent answers for each command (e.g. we could store them in different files).
- Commands each run interactively, not in a batch (it can't be something like "ls\n pwd \n" etc)
- After each command, the application will wait and check if the results are ok. If so, it will send the next command.
- We need to execute su on the remote host.
I've used ExpectJ (with a little hack of output stream). It has resolved points 1,3,4,5.
But there is a problem with point 2. In my app I need to get separated answer. But we will not know their length. Command prompts can be different. Anyone knows how to "hack" ExpectJ so it will be some how more synchronized? I am looking for acting like this : send , wait for full answer, send, wait... I've tried some basic synchronization tricks but this end in timeouts and connection lost usually.
This question is related to my older one :
Java library to run multiple unrelated commands on a remote server via ssh