From 3975329a2e321ab52830407869f8ab905b40eb73 Mon Sep 17 00:00:00 2001 From: YustasGals <31280025+YustasGals@users.noreply.github.com> Date: Thu, 12 Apr 2018 19:24:05 +0300 Subject: [PATCH] Update README.md add SVN option --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index dd25882..0b61f1e 100644 --- a/README.md +++ b/README.md @@ -6,12 +6,16 @@ Generate graph: ````shell sudo lsof -n -F | python lsofgraph.py | dot -Tjpg > /tmp/a.jpg + OR +sudo lsof -n -F | python lsofgraph.py | dot -T svg > /tmp/a.svg ```` or add `unflatten` to the chain for a better layout: ````shell sudo lsof -n -F | python lsofgraph.py | unflatten -l 1 -c 6 | dot -T jpg > /tmp/a.jpg + OR +sudo lsof -n -F | python lsofgraph.py | unflatten -l 1 -c 6 | dot -T svg > /tmp/a.svg ```` ![example output](/example.jpg)