您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

12 行
220 B

  1. #!/bin/bash
  2. LAST_SEEN_FILE=/var/tmp/human_last_seen
  3. LAST_CHECKED_FILE=/var/tmp/human_last_checked
  4. LAST_SEEN=`stat /var/tmp/human_last_seen --format=%Y`
  5. TIME_NOW=`date +%s`
  6. AGO=$(( $TIME_NOW - $LAST_SEEN ))
  7. echo $AGO