bash 脚本:获取空闲时间并进行比较

bash script: getting idle time and compare it

为什么 if-compression 不比较值?

idle_time=exec sudo -u home xprintidle

if [ "$idle_time" -ge 6000 ]
  then
  echo "hi"
fi

它不是那样工作的

首先,我更改为您用来以不同用户身份执行 xprintidle 的行。 之后我调整了if子句,因为也有错误。

#!/bin/bash
# actually assign the variable
idle_time=$(idle_time=exec sudo -u home xprintidle)
# adapted if clause to actually match (see  
if [ "$idle_time" -gt "6000" ]; then
    echo "hi"
fi