1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-25 09:15:32 +02:00

Fix syntax (#7543)

Fix the syntax for running on non-sequential CPUs, which is done with commas. Also fix the syntax for running on sequential CPUs, which uses a "-".
This commit is contained in:
dathide 2021-12-15 19:45:58 -07:00 committed by GitHub
parent b286619266
commit b205ef3b38
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -16,8 +16,8 @@
- Start a new process with affinity for multiple non-sequential CPUs:
`taskset --cpu-list {{cpu_id_1}} {{cpu_id_2}} {{cpu_id_3}}`
`taskset --cpu-list {{cpu_id_1}},{{cpu_id_2}},{{cpu_id_3}}`
- Start a new process with affinity for CPUs 1 through 4:
`taskset --cpu-list {{cpu_id_1}},{{cpu_id_4}}`
`taskset --cpu-list {{cpu_id_1}}-{{cpu_id_4}}`