I am running my shell script connecting to remote server through putty, in a batch script as:
putty.exe -ssh -2 user@sever.com -pw password -m command.cmd
where, command.cmd contains
cd /path/to/the/script
./name.ksh
It is running 100% correct, as I needed.But here, the putty terminal is appearing while the batch script is running, which I donot want.
Is there any way to hide the putty terminal?