Odi's astoundingly incomplete notes
New entries | Coderenice a tty
Quickly renice all processes of a tty:
ps -t pts/1 | awk 'NR>1 { print $1; }' | xargs renice 10 -p
Add comment