Skip to content

Instantly share code, notes, and snippets.

@minimal
Last active December 15, 2015 11:29
Show Gist options
  • Save minimal/5253506 to your computer and use it in GitHub Desktop.
Save minimal/5253506 to your computer and use it in GitHub Desktop.
kernel=`uname`
if [ "$kernel" = 'Darwin' ]; then
function grep_port {
lsof -n -i4TCP:$1 | grep LISTEN
}
else
function grep_port {
netstat -pntl | grep $1
}
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment