作者:瑞景地产王琴 | 来源:互联网 | 2023-06-08 16:34
经常需要对程序运行产生的日志中某些时间进行排序VIM内部使用Rgrep命令得到时间开销结果往往是这样的cw打开查找窗口后:temp.log|112col1|somet
经常需要对程序运行产生的日志中某些时间进行排序
VIM内部使用 Rgrep 命令得到 时间开销结果往往是这样的
cw打开查找窗口后:
temp.log|112 col 1| something_cost_time: 8.08ms
temp.log|113 col 1| something_cost_time: 8.18ms
temp.log|114 col 1| something_cost_time: 8.08ms
temp.log|119 col 1| something_cost_time: 8.28ms
想按最后一列排序
使用命令
%!sort -n -k 6
%表示全部范围
! 表示在VIM中使用外部命令
-n 表示数值排序
-k 表示第某列
-t 后面可以接 分隔符,默认空格
注意一个问题: 查找结果显示窗口通过不可修改,因此先使用命令
:set ma 更改属性为可修改
本文链接
http://blog.csdn.net/haithink/article/details/77530422