Awk trava durante a operação matemática no Solaris

1

Estou trabalhando em uma máquina SunOS 5.11 / Solaris 11.3. Eu tenho um script bash que calcula e exporta a frequência da CPU porque eu a uso freqüentemente em alguns scripts de teste.

Aqui estão as duas linhas de interesse:

solaris:~$ CPU_FREQ=$(psrinfo -v 2>/dev/null | grep 'MHz' | head -1 | awk '{print $6}')
solaris:~$ echo $CPU_FREQ
3000
solaris:~$ CPU_FREQ=$(awk "BEGIN {print $CPU_FREQ/1024/1024}")
^C

Por que o comando awk está travado no Solaris? E o que eu deveria estar fazendo diferente?

Aqui está a visão ampliada do script. Funciona bem no Linux, no OS X e nos BSDs.

IS_LINUX=$(uname -s | grep -i -c linux)
IS_DARWIN=$(uname -s | grep -i -c darwin)
IS_SOLARIS=$(uname -s | grep -i -c sunos)

# 2.0 GHz or 2.0/1024/1024/1024
CPU_FREQ=1.8189894
if [ "$IS_LINUX" -ne "0" ] && [ -e "/sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_max_freq" ]; then
    CPU_FREQ=$(cat /sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_max_freq)
    CPU_FREQ=$(awk "BEGIN {print $CPU_FREQ/1024/1024}")
elif [ "$IS_DARWIN" -ne "0" ]; then
    CPU_FREQ=$(sysctl -a 2>/dev/null | grep 'hw.cpufrequency' | head -1 | awk '{print $3}')
    CPU_FREQ=$(awk "BEGIN {print $CPU_FREQ/1024/1024/1024}")
elif [ "$IS_SOLARIS" -ne "0" ]; then
    CPU_FREQ=$(psrinfo -v 2>/dev/null | grep 'MHz' | head -1 | awk '{print $6}')
    CPU_FREQ=$(awk "BEGIN {print $CPU_FREQ/1024}")
fi

# Used by Crypto++ benchmarks
export CPU_SPEED=$CPU_FREQ

Aqui está a saída de psrinfo :

$ psrinfo -v
Status of virtual processor 0 as of: 06/07/2016 18:23:29
  on-line since 06/07/2016 14:28:28.
  The i386 processor operates at 3000 MHz,
        and has an i387 compatible floating point processor.
Status of virtual processor 1 as of: 06/07/2016 18:23:29
  on-line since 06/07/2016 14:28:34.
  The i386 processor operates at 3000 MHz,
        and has an i387 compatible floating point processor.
Status of virtual processor 2 as of: 06/07/2016 18:23:29
  on-line since 06/07/2016 14:28:34.
  The i386 processor operates at 3000 MHz,
        and has an i387 compatible floating point processor.
Status of virtual processor 3 as of: 06/07/2016 18:23:29
  on-line since 06/07/2016 14:28:34.
  The i386 processor operates at 3000 MHz,
        and has an i387 compatible floating point processor.
    
por jww 08.06.2016 / 00:27

1 resposta

3

Use nawk no Solaris.

/usr/bin/awk é o legado, não POSIX awk com o qual um script contendo apenas uma ação BEGIN não está ignorando seu stdin .

A seguinte declaração está aparecendo no manual nawk and /usr/xpg4/bin/awk , mas não no antigo awk one:

If an nawk program consists of only actions with the pattern BEGIN, and
the BEGIN action contains no getline function, nawk exits without read-
ing  its input when the last statement in the last BEGIN action is exe-
cuted.

A propósito, não é necessário executar scripts head , grep, and two awk . Um script awk pode fazer tudo isso sozinho:

 CPU_FREQ=$(psrinfo -v 2>/dev/null | nawk '/MHz/ {print $6/1024;exit}')
    
por 08.06.2016 / 01:09