How can I find a file/directory that could be anywhere on linux command line? [closed]
“Unfortunately this seems to only check the current directory, not the entire folder”. Presumably you mean it doesn’t look in subdirectories. To fix this, use find -name “filename” If the file in question is not in the current working directory, you can search your entire machine via find / -name “filename” This also works with … Read more