Comment on What are the fun ways to learn and master the file management system in Linux ?

<- View Parent
urushitan@kakera.kintsugi.moe ⁨2⁩ ⁨days⁩ ago
find / -iname "filename" 2>/dev/null

Find a file by (case insensitive) file name. Search the whole filesystem (/). Pipe errors to /dev/null (since it will output permission denied errors trying access directories you don’t have access to, among other things)

source
Sort:hotnewtop