0

我需要识别长时间运行的进程并将该进程的 pid 保存到文件中。使用以下命令,我能够确定长时间运行的进程的年龄。但在此之后,我对如何 grep 那个长时间运行的进程的 PID 感到震惊?任何帮助是极大的赞赏。

ps -eo pid,etime,cmd | grep DSD.RUN | awk '{print $2}' | ./script.sh | \
xargs -I [] bash -c 'if [ "[]" -gt "86400" ]; then echo []; fi'

Script.sh:(从stackoverflow帖子得到这个)

#!/bin/bash
awk -F $':' -f <(cat - <<-'EOF'
{
    if (NF == 2) {
        print $1*60 + $2
    } else if (NF == 3) {
        split($1, a, "-");
        if (a[2] > 0) {
            print ((a[1]*24+a[2])*60 + $2) * 60 + $3;
        } else {
            print ($1*60 + $2) * 60 + $3;
        }
    }
}
EOF
) < /dev/stdin
4

1 回答 1

1

之后awk '{print $2}',除了时间之外,您将失去一切,之后您将无法再轻松获得 pid。

而不是使用 awk 脚本将时间转换为秒,您应该只使用etimes,如果您已经在使用 awk,那么您可以在一行 awk 脚本中执行所有操作:

ps -eo pid,etimes,cmd | awk '/DSD\.RUN/ {if ($2 > 86400) {print $1}}'

正则表达式/DSD\.RUN/使以下操作仅适用于包含DST.RUN.

于 2013-09-15T07:57:11.347 回答