Erro ao comparar grandes números

1

Tentando usar isso

#!/bin/bash

SIZE=$(redis-cli info | grep used_memory: | awk -F':' '{print $2}')
MAX=19000000000

if [ "$SIZE" -gt "$MAX" ]; then
    echo 123
fi

Mas sempre recebendo: "Ganzzahliger Ausdruck erwartet"

Quando faço o eco de SIZE, recebo um valor como 2384934 - não preciso / posso converter um valor ou posso / faço?

OUTPUT de info do redis-cli:

# Memory
used_memory:812136
used_memory_human:793.10K
used_memory_rss:6893568
used_memory_rss_human:6.57M
used_memory_peak:329911472
used_memory_peak_human:314.63M
total_system_memory:16760336384
total_system_memory_human:15.61G
used_memory_lua:37888
used_memory_lua_human:37.00K
maxmemory:0
maxmemory_human:0B
maxmemory_policy:noeviction
mem_fragmentation_ratio:8.49
mem_allocator:jemalloc-3.6.0

EDIT: Eu encontrei o erro - eu usei print no comando awk - sem ele funciona.

SIZE=$(redis-cli info | grep used_memory: | awk -F':' '{$2}')
    
por Isengo 28.04.2018 / 14:58

1 resposta

2

Os números que você usa parecem ser muito grandes para bash . Você pode tentar algo como:

#!/bin/bash
SIZE=$(redis-cli info |  awk -F':' '$1=="used_memory" {print int($2/1000)}')
MAX=19000000
if [ "$SIZE" -gt "$MAX" ]; then
    echo 123
fi
    
por 28.04.2018 / 15:04