Reputation: 59
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
Reputation: 788
You can execute shell commands remotely using SSH, take a look at this: C# send a simple SSH command
Upvotes: 1