How do I do this with TPIPE ... extract the 5th space-delimited field from each line?TPIPE can already do that.
Code:
v:\> tail w32tm.log
2012-05-13 Sun 03:17:01 Correction: +0.015 s RTT: 61 ms
2012-05-14 Mon 03:17:01 Correction: +0.038 s RTT: 63 ms
2012-05-15 Tue 03:17:01 Correction: +0.002 s RTT: 61 ms
2012-05-16 Wed 03:17:01 Correction: -0.003 s RTT: 60 ms
2012-05-17 Thu 00:08:03 Correction: -0.695 s RTT: 55 ms
2012-05-17 Thu 03:17:00 Correction: +0.010 s RTT: 70 ms
2012-05-18 Fri 03:17:01 Correction: +0.037 s RTT: 61 ms
2012-05-19 Sat 03:17:01 Correction: -0.113 s RTT: 55 ms
2012-05-20 Sun 03:17:01 Correction: +0.048 s RTT: 89 ms
2012-05-21 Mon 03:17:01 Correction: +0.006 s RTT: 63 ms
v:\> tail w32tm.log | cut -d" " -f5
+0.015
+0.038
+0.002
-0.003
-0.695
+0.010
+0.037
-0.113
+0.048
+0.006