On my Linux machine I have a simple script that restarts roon server if I wish this.
It is just:
#!/bin/bash
sudo service roonserver restart
Is there a possibility to make such a shell script on MacOS too?
On my Linux machine I have a simple script that restarts roon server if I wish this.
It is just:
#!/bin/bash
sudo service roonserver restart
Is there a possibility to make such a shell script on MacOS too?
There are probably more elegant methods to shut down the server than a killall, but this works, too
Thank you very much! That works. Elegance is not so important to me in this case…