MACOS


🏠 Accueil

Finding Files

sudo find / -iname "*search-string*"
sudo find / -ipath "*search-string*"

Network

See which process is listen on a specific port

ps -eaf | grep `lsof -t -i:3000`

MacOS sheat sheet

Finding Files

sudo find / -iname "*search-string*"
sudo find / -ipath "*search-string*"

Network

See which process is listen on a specific port

ps -eaf | grep `lsof -t -i:3000`