代码运行良好,有时会给出Integer表达式预期错误

时间:2018-05-17 09:16:11

标签: bash shell cut

如果内存超过给定的内存阈值,我正在编写一个代码来杀死我的worker。以下是代码:

#!/bin/bash
memory_usage=`ps -eo size,pid,user,command --sort -size | awk '{ hr=$1/1024 ; printf("%13.2f Mb ",hr) } { for ( x=4 ; x<=NF ; x++ ) { printf("%s ",$x) } print "" }' |cut -d "" -f2 | cut -d "-" -f1 | grep worker | cut -d M -f 1`
echo "Memory usage is ${memory_usage}"
int_memory_usage=${memory_usage%.*}
echo "Int Memory usage is ${int_memory_usage}"
if [ "${int_memory_usage}" -gt 16000 ];
then
    echo "Memory for worker ${memory_usage} above threshold"
    pkill -f "worker"
fi

代码大部分时间都可正常运行。它给出了以下答案:

Memory usage is       4282.88 
Int Memory usage is       4282

但是在某些情况下会产生以下错误:

Memory usage is       4261.01 
         0.34 
Int Memory usage is       4261.01 
         0
/home/kill_worker.sh: line 6: [:       4261.01 
     0: integer expression expected

请帮我在代码中找到问题。

由于

2 个答案:

答案 0 :(得分:1)

从输出中可以看出,memory_usage设置为字面

      4261.01 
         0.34 

因此,当下一个输出删除最后一个点之后的内容时,您仍然会使用

      4261.01 
         0

显然不是整数。这是因为从第一行的某个命令获取两行。

@AndrewTaylor是对的,这种做法不起作用。我非常建议您阅读process management

答案 1 :(得分:-1)

感谢您的建议。我在代码中添加了以下行,它开始正常工作。

memory_usage=`echo "${memory_usage}" | head -1`

感谢。