Skip to content

Instantly share code, notes, and snippets.

@RobertAKARobin
Created March 16, 2019 17:53
Show Gist options
  • Save RobertAKARobin/43e251458a6f81795311b7adfaf5318b to your computer and use it in GitHub Desktop.
Save RobertAKARobin/43e251458a6f81795311b7adfaf5318b to your computer and use it in GitHub Desktop.
const fs = require('fs')
const rx = {
fail: /^Request timeout/i,
time: /^(\d\d:\d\d:\d\d\.?\d*)/i,
seq: /icmp_seq=(\d+)/i,
dur: /time=([\d\.]+) ms$/i
}
const log = []
fs.readFileSync('./ping.txt', 'utf8').split('\n').forEach(line=>{
const time = line.match(rx.time)
const seq = line.match(rx.seq)
const dur = line.match(rx.dur)
if(time && seq && dur){
log.push([
time[1],
seq[1],
dur[1]
].join(','))
}
})
console.log(log.join('\n'))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment