Skip to content

Latest commit

 

History

History
12 lines (10 loc) · 281 Bytes

darwin.md

File metadata and controls

12 lines (10 loc) · 281 Bytes

Darwin/MacOS

如何查看监听一个端口的程序?

linux 下可以直接使用netstat -anop来完成,mac下不行,可以这样:

lsof -ni :8088 |grep LISTEN

查看目录占用情况时排除Library目录

du -lh -d1 -I "Library" ~