Madhu Velayudhan
Madhu Velayudhan

Reputation: 59

How to execute a shell script on a server using windows application

I have built a Windows application using C-Sharp which basically connects to database server hosted on a linux server. Is there a way using which I can modify the same application so that I can execute unix commands which shall be executed on the server.

Upvotes: 0

Views: 1715

Answers (1)

Viggo Lundén
Viggo Lundén

Reputation: 788

You can execute shell commands remotely using SSH, take a look at this: C# send a simple SSH command

Upvotes: 1

Related Questions