Quotidien Shaarli
October 7, 2024
Pas certain que ça soit efficace mais bon.
Sous le coude pour un achat ultérieur...
J'adore lire les BDs qui abordent ce type de sujet d'actu.
netstat -na | grep -w "LISTEN"
netstat -nlp # via https://superuser.com/a/42849
show app and ports that's it
sudo netstat -tunlp | awk '{print $4, $7}' | grep -Eo ':[0-9]+|[0-9]+/[a-zA-Z]+' | sed 'N;s/\n/ /' | awk '{print $1, $2}' | cut -d ':' -f 2 | grep '/' | sed 's;[0-9]*/;;g' | awk '{printf "%-10s\t%s\n", $1, $2}'
Inspirational blog resources for both beginner bloggers and those who’ve been blogging for years. Tools, guides and tips for all blog platforms.