Hello World

Be Happy!

kill Rails process with find port number in macos


lsof -wni tcp:3000
Then, use the number in the PID column to kill the process:
$ kill -9 PID

https://stackoverflow.com/a/4473322/1399891
#macos (3) #rails (38)
List