We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 11f50eb commit 3975329Copy full SHA for 3975329
README.md
@@ -6,12 +6,16 @@ Generate graph:
6
7
````shell
8
sudo lsof -n -F | python lsofgraph.py | dot -Tjpg > /tmp/a.jpg
9
+ OR
10
+sudo lsof -n -F | python lsofgraph.py | dot -T svg > /tmp/a.svg
11
````
12
13
or add `unflatten` to the chain for a better layout:
14
15
16
sudo lsof -n -F | python lsofgraph.py | unflatten -l 1 -c 6 | dot -T jpg > /tmp/a.jpg
17
18
+sudo lsof -n -F | python lsofgraph.py | unflatten -l 1 -c 6 | dot -T svg > /tmp/a.svg
19
20
21

0 commit comments