Samiron
Samiron

Reputation: 5317

Executing a remote .sh file from windows

Im running a batch script in windows which will

After that I need to do some other jobs on the uploaded zip file in linux.

So is there any way to make a single script file to do all these?

Upvotes: 2

Views: 1348

Answers (1)

Yann Ramin
Yann Ramin

Reputation: 33187

Sure, you can use the various PuTTY utilities:

  • plink allows you to pipe commands around to SSH servers, and invoke commands (akin to "ssh" on Linux)
  • pscp allows for remote file copying using SCP or SFTP

http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html

Upvotes: 3

Related Questions