Skip to content

Instantly share code, notes, and snippets.

@miebach
Created April 12, 2012 16:24
Show Gist options
  • Save miebach/2368813 to your computer and use it in GitHub Desktop.
Save miebach/2368813 to your computer and use it in GitHub Desktop.
Kill openerp 6.1 server by pid
#!/bin/sh
kill -9 `ps au|grep 6.1|grep -v "grep"| awk '{print $2}'`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment