Tengo el siguiente fragmento en mi .bashrc:
# Returns system load as percentage, i.e., '40' rather than '0.40)'.
function load()
{
local SYSLOAD=$(cut -d " " -f1 /proc/loadavg | tr -d '.')
# System load of the current host.
echo $((10#$SYSLOAD)) # Convert to decimal.
}
Cuando se analiza, obtengo este error: bash: 100* : syntax error: operand expected (error token is " ")
pero no estoy seguro de por qué
0 votos
¿Estás ejecutando esto en MacOS?
0 votos
¿Con el bash del sistema, o con algún otro bash? ¿Este error se produce al iniciar el shell o al intentar utilizar la función?
0 votos
Hace
100*
¿ocurren en algún otro lugar de este archivo? No veo cómo esta función puede lanzar ese error.