I wrote a short Python script for that and forgot to put the .use before copy/pasting the output
Sorry about that.
I paste here the corrected code in Python
for i in range(24):
processor = f'Processor{i}.use = "{"FALSE" if i > 15 else "TRUE"}"'
print(processor)
Here is a bash version
#!/bin/bash
for n in {0..23}
do
if [ $n -le 15 ]
then
printf "Processor%d.use=\"TRUE\"\n" $n
else
printf "Processor%d.use=\"FALSE\"\n" $n
fi
continue
done