Hi, I want to be able to send via a php page command to my server. The problem is that I need to send a command in screen.
screen -r minecraft
(in screen) mono McMyAdmin.exe
How can I do that?
thanks!
Printable View
Hi, I want to be able to send via a php page command to my server. The problem is that I need to send a command in screen.
screen -r minecraft
(in screen) mono McMyAdmin.exe
How can I do that?
thanks!
i'd create a script called /tmp/start-prog.sh and in it put:
make it executable:Code:mono McMyAdmin.exe
then call it a la:Code:chmod +x /tmp/start-prog.sh
Code:screen -S minecraft -d -m /tmp/start-prog.sh
yeah exactly what I was looking for thanks!