How to execute Unix shell script from Windows?

unable to execute a .sh script with Jsch

  • i'm trying to execute a script shell in a unix server from my java application (on my windows seven station) using the ssh api Jsch. the script shell i'm using "start_lm" is a C binary. this is the code i'm using (it's from the Jsch website exemples) try{ JSch jsch=new JSch(); Session session=jsch.getSession(user, host, 22); UserInfo ui=new MyUserInfo(); session.setUserInfo(ui); session.connect(); String command="user/psi/start_lm"; Channel channel=session.openChannel("exec"); ((ChannelExec)channel).setCommand(command); channel.setInputStream(null); ((ChannelExec)channel).setErrStream(System.err); InputStream in=channel.getInputStream(); channel.connect(); while(true){ if(channel.isClosed()){ System.out.println("exit-status: "+channel.getExitStatus()); break; } try{Thread.sleep(1000);}catch(Exception ee){} } channel.disconnect(); session.disconnect(); } the error i'm getting is exit-status: -1 what does it mean thanks for ure help.

  • Answer:

    There's the problem I believe ". ./start_lm.sh It should be below provided script present in current directory "./start_lm.sh as exit status 127 says 127 "command not found" illegal_command

sm1988 at Stack Overflow Visit the source

Was this solution helpful to you?

Related Q & A:

Just Added Q & A:

Find solution

For every problem there is a solution! Proved by Solucija.

  • Got an issue and looking for advice?

  • Ask Solucija to search every corner of the Web for help.

  • Get workable solutions and helpful tips in a moment.

Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.