pense bete trouver contenu d’un fichier

find . | grep php$ | xargs grep ‘ce que je cherche’ | sort | more

Snipt – isagoksu – Show the process ID that uses specific port | Share and store code or command snippets.

# The linux fuser command has a special option for port conflicts. # Use fuser -n tcp <port id> for tcp ports to see which process is using # the port. # For example to see which application is already using port 80 use: $ fuser -n tcp 80 # The netstat command can also […]