vcastellm / guard-go

Run and restart go programs when changed
MIT License
24 stars 13 forks source link

Change compute of pid in ruby to direct call to killall. #4

Closed trashhalo closed 11 years ago

trashhalo commented 11 years ago

Currently you are trying to kill all pids that have a.out as their name. You do this using ps, awk and kill. This can be simplified by calling 'killall a.out' which is a standard unix/osx command that takes a name and kills things that have that name.

vcastellm commented 11 years ago

https://github.com/victorcoder/guard-go/issues/5