I\'m trying to determine what application is using certain port and get netstat -tlnp | grep for Linux.
netstat -tlnp | grep for Linux
This command return the following o
Also you can get rid of that "you have to be root" message by redirecting stderr to /dev/null
netstat -tlnp 2>/dev/null | grep ...