Run .sh file in linux machine via putty
- by Prateek
I want run an .sh file which take an argument in a Linux machine. I'm using plink.exe to  execute this .sh file from a windows machine. But I don't know what to write in the batch file in order to run plink.exe which in turn executes the .sh file and this file arguement.  
I have written following batch command:  
@echo off  
start C:\Users\Prateek\Desktop\PLINK.EXE -ssh -P 22 user@host -pw password sh -x  "/home/user/copy.sh"
On executing it, I get:
+ echo ''  
+ echo 'Enter partner id'  
Enter partner id  
+ read pid  
:  
Actually 'Enter partner id' is the argument, which I need to pass.