We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a9bb828 + e2635c2 commit 1a26da7Copy full SHA for 1a26da7
README.md
@@ -19,3 +19,14 @@ sudo lsof -n -F | python lsofgraph.py | unflatten -l 1 -c 6 | dot -T svg > /tmp/
19
````
20
21

22
+
23
+# Install and use to Mac OS
24
25
+Graphviz contains utilities dot and unflatten
26
+````shell
27
+brew install Graphviz
28
+git clone https://github.com/akme/lsofgraph-python.git
29
+cd lsofgraph-python
30
+lsof -n -F | python lsofgraph.py | unflatten -l 1 -c 6 | dot -T jpg > /tmp/a.jpg && open /tmp/a.jpg
31
+lsof -n -F | python lsofgraph.py | unflatten -l 1 -c 6 | dot -T svg > /tmp/a.jpg && open -a Safari.app '/tmp/a.svg'
32
+````
0 commit comments