So, I have been doing MEAN stack web development for some time now. I am normally used to Angular UI development and executing CRUD operations using node servers.
Now, I have a new requirement - Create a UI for running some shell scripts on a remote Linux server.
For example:-
files are located in a path such as files/bin/example.sh in the remote server. I have to be able to perform operations via my UI such as:-
example.sh status device name
example.sh start device name
How can I do this? Can anyone give me some directions?
Thanks.