这些是可能的输出格式ps h -eo etime
21-18:26:30
15:28:37
48:14
00:01
如何将它们解析为秒?
- 请假设天数部分至少为 3 位数,因为我不知道它可以有多长。
- 输出将
egreped
只有一行,因此不需要循环。
这些是可能的输出格式ps h -eo etime
21-18:26:30
15:28:37
48:14
00:01
如何将它们解析为秒?
egreped
只有一行,因此不需要循环。另一个 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:2:3:4
而不是'1-2:3:4',将总数设置为0并将乘数设置为1使用 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
这是我的 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"'
未定义的值呈现为零,因此它们不会影响秒数的总和。
认为我可能在这里遗漏了重点,但最简单的方法是:
ps h -eo etimes
请注意 etime 末尾的“s”。
尝试将我的解决方案与 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}'
我已经实现了一个 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
[[ $(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 中,其中的部分用于计算秒数。
这是一个 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
}
#!/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
红宝石版本:
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
另一个 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
}
我只需要添加我的版本,很大程度上基于@andor 的优雅 perl one-liner(漂亮的 perl 代码!)
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
适用于 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
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)))