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 fduran/11400672 to your computer and use it in GitHub Desktop.
Save fduran/11400672 to your computer and use it in GitHub Desktop.
# www.fduran.com
# renice many processes with the same name
for i in `pgrep processname`; do renice 20 -p $i; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment