Start a task on specific cpu cores

The below code will use the taskset command to assign the job to CPUs 16-23. In my case, those are E-cores.
This way the system runs cooler.

taskset -c 16-23 ~/test/homelab/scripts/backup-ver3.sh

You may also state (a) specific core(s). Happy tinkering!