经常需要对程序运行产生的日志中某些时间进行排序
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 后面可以接 分隔符,默认空格