Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rec3141/d3462ad653e3d9ca546a082e90656594 to your computer and use it in GitHub Desktop.
Save rec3141/d3462ad653e3d9ca546a082e90656594 to your computer and use it in GitHub Desktop.
kill processes older than
ps -axeo pid,etime,command | awk '$2~/^0[1234]-/ && $0~/COMMAND/ { print $1 }' | xargs kill
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment