We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 60ce9c3 commit 4066354Copy full SHA for 4066354
troute.awk
@@ -0,0 +1,9 @@
1
+# Traceroute hacking
2
+# Example: traceroute bad.horse 2>/dev/null | awk -f troute.awk
3
+
4
+{
5
+ total+=$(NF-1)
6
+}
7
+END{
8
+ print "Total ms: "total
9
+ }
0 commit comments