Unix commands
Find Largest Directories in Linux
du -hs * | sort -rh | head -5What is running on this port?
Using netstat Command
netstat -ltnp | grep -w ':80'Using lsof Command
lsof -i :80Find a file
# find . -name "*.yaml"Find a directory
Find a file that contains a string
Last updated