All pastes #2061733 Raw Edit

Unnamed

public text v1 · immutable
#2061733 ·published 2011-05-16 18:00 UTC
rendered paste body
#!/bin/sh

RAILS_PROCS=$(pgrep -f "Rails")

if [ -n "$RAILS_PROCS" ] ; then
  # Kill once using regular kill...
  for i in "$RAILS_PROCS" ; do
    kill $i
  done

  # Wait 5 seconds and SIGKILL if they're still around...
  sleep 5s
  for i in "$RAILS_PROCS" ; do
    kill -9 $i
  done
fi