项目作者: stefansundin

项目描述 :
Map your traceroutes easily.
高级语言: HTML
项目地址: git://github.com/stefansundin/traceroute-mapper.git
创建时间: 2015-12-18T07:40:09Z
项目社区:https://github.com/stefansundin/traceroute-mapper

开源协议:GNU Affero General Public License v3.0

下载


traceroute-mapper

Run it from your terminal:

Linux

Put this in your .bashrc:

  1. function traceroute-mapper {
  2. xdg-open "https://stefansundin.github.io/traceroute-mapper/?trace=$(traceroute -q1 $* | sed ':a;N;$!ba;s/\n/%0A/g')"
  3. }

Then simply run: traceroute-mapper example.com

Mac

Put this in your .bash_profile:

  1. function traceroute-mapper {
  2. open "https://stefansundin.github.io/traceroute-mapper/?trace=$(traceroute -q1 $*)"
  3. }

Then simply run: traceroute-mapper example.com

Windows

Put traceroute-mapper.bat in your %PATH% (e.g. C:\Windows\).

Then open cmd and run: traceroute-mapper example.com