From 6fd68cb8c210adf104450d5e58cb03f1b9391480 Mon Sep 17 00:00:00 2001 From: rprieto Date: Thu, 12 Dec 2013 23:43:12 +1100 Subject: [PATCH] LSOF command --- osx/lsof.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 osx/lsof.md diff --git a/osx/lsof.md b/osx/lsof.md new file mode 100644 index 0000000000..e349d520d6 --- /dev/null +++ b/osx/lsof.md @@ -0,0 +1,15 @@ +# lsof + +> Lists open files and the correspondig processes + +- find the processes that have a given file open + +`lsof {{/path/to/file}}` + +- find the process that opened a local internet port + +`lsof -i :{{8080}}` + +- only output the process PID (e.g. to pipe into kill) + +`lsof -t {{/path/to/file}} | xargs kill -9`