我有一个statistics -o -u i1,1,1
返回的 linux 命令
max count[0]:=31
max count:=31
我想在我的 perl 脚本中取出数字 31。我可以从命令行使用 awk piped to head
statistics -o -u i1,1,1 | awk -F':=' '{print $2}' | head -n1
或类似地使用 grep
statistics -o -u i1,1,1 | grep -Po '(?<=max count:=)\d+'
或 sed...
我怎样才能在 perl 脚本中做类似的事情?
编辑本质上,我想用纯 perl 解决方案替换 perl 代码中的反引号系统调用。