Bug in remote agent
When executing the procedure:
- export N_CORES=$(grep -c ^processor /proc/cpuinfo)
- echo $N_CORES
- CORES_LIST=$(seq 0 $N_CORES | tr "\n" " ")
- echo $CORES_LIST
The last command returns 0\n
while it should be returning 0 1 2 3
.
Edited by PERE Alexandre