Skip to content

Instantly share code, notes, and snippets.

@melvyniandrag
Created January 2, 2019 23:23
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 melvyniandrag/331f146e6addefed713bc6607cbc1c50 to your computer and use it in GitHub Desktop.
Save melvyniandrag/331f146e6addefed713bc6607cbc1c50 to your computer and use it in GitHub Desktop.
Niceness Experiement
x = 1
while(True):
x+=1
#!/bin/bash
for i in `seq 1 100`; do
python hog.py &
last_pid=$!
renice -n -20 -p $last_pid
done;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment