-
-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Takumasa Sakao
committed
Feb 12, 2018
1 parent
600eb15
commit 1e2a498
Showing
1 changed file
with
48 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
tcpterm | ||
=== | ||
|
||
tcpterm visualize packets in TUI. | ||
|
||
This project aims tcpdump for human. | ||
|
||
Demo | ||
--- | ||
|
||
[![asciicast](https://asciinema.org/a/td3DA8LH04XYhxGPirJvsEI4V.png)](https://asciinema.org/a/td3DA8LH04XYhxGPirJvsEI4V) | ||
|
||
Install | ||
--- | ||
|
||
``` | ||
$ go get github.com/sachaos/tcpterm | ||
``` | ||
|
||
Usage | ||
--- | ||
|
||
``` | ||
$ tcpterm -h | ||
NAME: | ||
tcpterm - tcpdump for human | ||
USAGE: | ||
tcpterm [global options] command [command options] [arguments...] | ||
VERSION: | ||
0.0.1 | ||
COMMANDS: | ||
help, h Shows a list of commands or help for one command | ||
GLOBAL OPTIONS: | ||
--interface value, -i value If unspecified, use lowest numbered interface. | ||
--help, -h show help | ||
--version, -v print the version | ||
``` | ||
|
||
TODO | ||
--- | ||
|
||
* Optimize packets list view. | ||
* Fix SIGSEGV bug. | ||
* Improve detail view, and dump view. |