Skip to content

Instantly share code, notes, and snippets.

@airled
Last active June 20, 2024 06:28
Show Gist options
  • Save airled/76dd82d289ea0ed59b8bb7d76a867dbf to your computer and use it in GitHub Desktop.
Save airled/76dd82d289ea0ed59b8bb7d76a867dbf to your computer and use it in GitHub Desktop.
Show list of process affinities ommiting threads
# Show list of process affinities omitting threads
for pid in $(ps --ppid 2 -p 2 --deselect -o pid=); do taskset -pc $pid 2>/dev/null; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment