Skip to content

Instantly share code, notes, and snippets.

@novoland
Last active August 29, 2015 14:18
Show Gist options
  • Save novoland/e1ecda8260ea219e242f to your computer and use it in GitHub Desktop.
Save novoland/e1ecda8260ea219e242f to your computer and use it in GitHub Desktop.
常用shell命令
# 找出java进程并杀掉
ps -ef | grep java | kill -9 `awk '{print $2}'`
# MAC下看某个端口被占用情况 (TCP/LISTEN)
lsof -n -i4TCP:8080 | grep LISTEN
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment