I have a target in build.xml like that:

<target name ="deployment">     
<sshexec host="myhost" 
                        username="myusername"
                        password="mypassword"
                        trust = "true"
                        verbose="true"
                        command="dir E:\Share"/>
</target>

When I run this target, the result out put :

deployment:
  [sshexec] Connecting to tamnguyen0908:22
  [sshexec] dir: not found
BUILD SUCCESSFUL

My scenario:

Run in : Linux Ubuntu
SSh : open ssh
Ant1,7; jsch-0.1.37.jar (for using sshexec and scp tasks)
myhost : Windows XP OS

It seem caused by ant or jsch-0.1.37.jar, because when I ssh to myhost by
shell command and do something in myhost, everything oke.

sshexec can not find dir, mkdir.... command, but it realizes some command
such as ping, ipconfig, netstat.
When I change myhost to an Linux server (sshexec from Linux to Linux), the
script run ok.
Any one can help me to solve this problem. I have spent all day but nothing
change.
Thanks !
-- 
View this message in context: 
http://www.nabble.com/sshexec-ant-task-command-not-found-tp16627324p16627324.html
Sent from the Ant - Users mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to