7

这些是可能的输出格式ps h -eo etime

21-18:26:30
   15:28:37
      48:14
      00:01

如何将它们解析为秒?

  • 请假设天数部分至少为 3 位数,因为我不知道它可以有多长。
  • 输出将egreped只有一行,因此不需要循环。
4

14 回答 14

15

另一个 bash 解决方案,它适用于任意数量的字段:

ps -p $pid -oetime= | tr '-' ':' | awk -F: '{ total=0; m=1; } { for (i=0; i < NF; i++) {total += $(NF-i)*m; m *= i >= 2 ? 24 : 60 }} {print total}'

解释:

  1. 替换-:使字符串变为1:2:3:4而不是'1-2:3:4',将总数设置为0并将乘数设置为1
  2. 分割:,从最后一个字段(秒)开始,乘以 m = 1,添加到总秒数,m 变为 60(一分钟秒数)
  3. 添加分钟字段乘以 60,m 变为 3600
  4. 加小时 * 3600
  5. 添加天数 * 3600 * 24
于 2015-03-04T14:11:30.037 回答
14

使用 awk:

#!/usr/bin/awk -f  
BEGIN { FS = ":" }
{
  if (NF == 2) {
    print $1*60 + $2
  } else if (NF == 3) {
    split($1, a, "-");
    if (a[2] != "" ) {
      print ((a[1]*24+a[2])*60 + $2) * 60 + $3;
    } else {
      print ($1*60 + $2) * 60 + $3;
    }
  }
}

运行:

awk -f script.awk datafile

输出:

1880790
55717
2894
1

最后,如果您想通过管道传输到解析器,您可以执行以下操作:

ps h -eo etime | ./script.awk
于 2013-02-01T19:15:26.740 回答
13

这是我的 Perl 一个班轮:

ps -eo pid,comm,etime | perl -ane '@t=reverse split(/[:-]/,$F[2]); $s=$t[0]+$t[1]*60+$t[2]*3600+$t[3]*86400; print "$F[0]\t$F[1]\t$F[2]\t$s\n"'

未定义的值呈现为零,因此它们不会影响秒数的总和。

于 2013-09-17T08:47:49.813 回答
9

认为我可能在这里遗漏了重点,但最简单的方法是:

ps h -eo etimes

请注意 etime 末尾的“s”。

于 2016-01-15T14:39:30.060 回答
6

尝试将我的解决方案与 sed+awk 一起使用:

ps --pid $YOUR_PID -o etime= | sed 's/:\|-/ /g;' |\ 
awk '{print $4" "$3" "$2" "$1}' |\
awk '{print $1+$2*60+$3*3600+$4*86400}'

它用 sed 拆分字符串,然后将数字倒转(“DD hh mm ss”->“ss mm hh DD”)并用 awk 计算它们。

您还可以使用 sed 并从输入字符串中删除所有非数字字符:

sed 's/[^0-9]/ /g;' | awk '{print $4" "$3" "$2" "$1}' | awk '{print $1+$2*60+$3*3600+$4*86400}'
于 2014-08-07T21:02:22.240 回答
3

我已经实现了一个 100% 的 bash 解决方案,如下所示:

#!/usr/bin/env bash

etime_to_seconds() {
  local time_string="$1"
  local time_string_array=()
  local time_seconds=0
  local return_status=0

  [[ -z "${time_string}" ]] && return 255

  # etime string returned by ps(1) consists one of three formats:
  #         31:24 (less than 1 hour)
  #      23:22:38 (less than 1 day)
  #   01-00:54:47 (more than 1 day)
  #

  # convert days component into just another element
  time_string="${time_string//-/:}"

  # split time_string into components separated by ':'
  time_string_array=( ${time_string//:/ } )

  # parse the array in reverse (smallest unit to largest)
  local _elem=""
  local _indx=1
  for(( i=${#time_string_array[@]}; i>0; i-- )); do
    _elem="${time_string_array[$i-1]}"
    # convert to base 10
    _elem=$(( 10#${_elem} ))
    case ${_indx} in
      1 )
        (( time_seconds+=${_elem} ))
        ;;
      2 )
        (( time_seconds+=${_elem}*60 ))
        ;;
      3 )
        (( time_seconds+=${_elem}*3600 ))
        ;;
      4 )
        (( time_seconds+=${_elem}*86400 ))
        ;;
    esac
    (( _indx++ ))
  done
  unset _indx
  unset _elem

  echo -n "$time_seconds"; return $return_status
}

main() {
  local time_string_array=( "31:24" "23:22:38" "06-00:15:30" "09:10" )

  for timeStr in "${time_string_array[@]}"; do

      local _secs="$(etime_to_seconds "$timeStr")"
      echo "           timeStr: "$timeStr""
      echo "  etime_to_seconds: ${_secs}"
  done

}

main
于 2015-02-10T20:55:10.623 回答
2
[[ $(ps -o etime= REPLACE_ME_WITH_PID) =~ ((.*)-)?((.*):)?(.*):(.*) ]]
printf "%d\n" $((10#${BASH_REMATCH[2]} * 60 * 60 * 24 + 10#${BASH_REMATCH[4]} * 60 * 60 + 10#${BASH_REMATCH[5]} * 60 + 10#${BASH_REMATCH[6]}))

BASH。BASH_REMATCH 变量需要 BASH 2+ (?)。正则表达式匹配任何输入并将匹配的字符串放入数组 BASH_REMATCH 中,其中的部分用于计算秒数。

于 2015-03-27T01:31:36.540 回答
2

这是一个 PHP 替代方案,可读且经过完全单元测试:

//Convert the etime string $s (as returned by the `ps` command) into seconds
function parse_etime($s) {
    $m = array();
    preg_match("/^(([\d]+)-)?(([\d]+):)?([\d]+):([\d]+)$/", trim($s), $m); //Man page for `ps` says that the format for etime is [[dd-]hh:]mm:ss
    return
        $m[2]*86400+    //Days
        $m[4]*3600+     //Hours
        $m[5]*60+       //Minutes
        $m[6];          //Seconds
}
于 2014-04-23T22:06:29.387 回答
2
#!/bin/bash
echo $1 | sed 's/-/:/g' |  awk -F $':' -f <(cat - <<-'EOF'
  {
    if (NF == 1) {
        print $1
    }
    if (NF == 2) {
        print $1*60 + $2
    }
    if (NF == 3) {
        print $1*60*60 + $2*60 + $3;
    }
    if (NF == 4) {
        print $1*24*60*60 + $2*60*60 + $3*60 + $4;
    }
    if (NF > 4 ) {
        print "Cannot convert datatime to seconds"
        exit 2
    }
  }
EOF
) < /dev/stdin

然后运行使用:

ps -eo etime | ./script.sh 
于 2014-12-15T08:49:30.733 回答
1

红宝石版本:

def psETime2Seconds(etime)
  running_secs = 0
  if etime.match(/^(([\d]+)-)?(([\d]+):)?([\d]+):([\d]+)$/)
    running_secs += $2.to_i * 86400 # days
    running_secs += $4.to_i * 3600  # hours
    running_secs += $5.to_i * 60    # minutes
    running_secs += $6.to_i         # seconds
  end
  return running_secs
end
于 2015-02-03T18:47:45.397 回答
1

另一个 bash 选项作为函数;使用 tac 和 bc 进行数学运算。

function etime2sec () {
   # 21-18:26:30
   #    15:28:37
   #       48:14
   #       00:01
etimein=$1
hassec=no ; hasmin=no ; hashr=no ; hasday=no
newline=`echo "${etimein}" | tr ':' '-' | tr '-' ' ' | tac -s " " | tr '\n' ' '`
for thispiece in $(echo "${etimein}" | tr ':' '-' | tr '-' ' ' | tac -s " " | tr '\n' ' ') ; do
  if [[ $hassec = no ]] ; then
    totsec=$thispiece
    hassec=yes
  elif [[ $hasmin = no ]] ; then
    totsec=`echo "$totsec + ($thispiece * 60)" | bc`
    hasmin=yes
  elif [[ $hashr = no ]] ; then
    totsec=`echo "$totsec + ($thispiece * 3600)" | bc`
    hashr=yes
  elif [[ $hasday = no ]] ; then
    totsec=`echo "$totsec + ($thispiece * 86400)" | bc`
    hashr=yes
  fi
done
echo $totsec
}
于 2017-03-12T06:33:52.753 回答
0

我只需要添加我的版本,很大程度上基于@andor 的优雅 perl one-liner(漂亮的 perl 代码!)

  • 时间:自开始以来的总 CPU 时间(?或它的一些计算,如果 cpu 使用率下降,它会衰减?我不确定....虽然高数字表示 cpu 密集型进程)
  • etime:自进程启动以来经过的总时间
  • tail 的 2 种方法:在 linux 上:tail +2不起作用。在solaris上,tail -n +2不起作用。所以我尝试两者来确定。

这是计算时间的方法,以及如何根据进程的平均 CPU 使用率对进程进行排序

ps -eo pid,comm,etime,time | { tail +2 2>/dev/null || tail -n +2 ;} | perl -ane '
    @e=reverse split(/[:-]/,$F[2]); $se=$e[0]+$e[1]*60+$e[2]*3600+$e[3]*86400;
    @t=reverse split(/[:-]/,$F[3]); $st=$t[0]+$t[1]*60+$t[2]*3600+$t[4]*86400; 
    if ( $se == 0 ) { $pct=0 ; } else { $pct=$st/$se ;};
    printf "%s\t%s\t%s(%sseconds)\t%s(%sseconds)\t%.4f%%\n",$F[0],$F[1],$F[2],$se,$F[3],$st,$pct*100;
   '  | sort -k5,5n
于 2016-03-25T19:57:40.170 回答
0

适用于 AIX 7.1:

ps -eo etime,pid,comm | awk '{if (NR==1) {print "-1 ",$0} else {str=$1; sub(/-/, ":", str="0:0:"str); n=split(str,f,":"); print 86400*f[n-3]+3600*f[n-2]+60*f[n-1]+f[n]," ",$0}}' | sort -k1n
于 2016-04-13T13:59:08.893 回答
0

Python的一个版本:

ex=[
    '21-18:26:30',
    '06-00:15:30',
    '15:28:37',
    '48:14',
    '00:01'
    ]

def etime_to_secs(e):
    t=e.replace('-',':').split(':')
    t=[0]*(4-len(t))+[int(i) for i in t]
    return t[0]*86400+t[1]*3600+t[2]*60+t[3]

for e in ex:
    print('{:11s}: {:d}'.format(e, etime_to_secs(e)))
于 2018-05-02T17:02:13.407 回答