Skip to content

Instantly share code, notes, and snippets.

@book000
Last active February 21, 2021 18:21
Show Gist options
  • Save book000/4392fc6d39ed7035c08ccac48d1860bd to your computer and use it in GitHub Desktop.
Save book000/4392fc6d39ed7035c08ccac48d1860bd to your computer and use it in GitHub Desktop.
使用しているポート一覧を表示するワンライナーコード
sudo lsof -iTCP -sTCP:LISTEN -P | sed 's/NAME//g' | awk '{ print $9 }' | sed 's/localhost/*/g' | sed 's/*://g' | sort --numeric-sort | uniq
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment