find directory linux code example
Example 1: find folder linux
find / -type d -name 'folder_name'
Example 2: find operating system linux
#Get details about linux distro
cat /etc/os-release
Example 3: terminal how to find a directory
find . -type d | grep DIRNAME
Example 4: linux find directores
find -type d -iname $name
Example 5: find folder in linux
find / -name "dir-name-here"
Example 6: find folder in centos 8
find / -type d -name "apt"
sudo find / -type d -name "apt"