elimine os espaços em branco ao redor de "=":
OUTPUT=$(top -b -n 1 | egrep 'fwk3' | awk '{print $9}')
echo "${OUTPUT}"
Eu sei como definir uma variável BASH igual à saída de um comando, mas isso não funciona no caso do comando 'top' para mim, veja abaixo
cat aTOPFWK.sh
OUTPUT = $(top -b -n 1 | egrep 'fwk3' | awk '{print $9}')
echo "${OUTPUT}"
./aTOPFWK.sh: line 3: OUTPUT: command not found
elimine os espaços em branco ao redor de "=":
OUTPUT=$(top -b -n 1 | egrep 'fwk3' | awk '{print $9}')
echo "${OUTPUT}"
Tags bash