I know how to find files using
find . -name "file_name"
But if I am given one part of the path, say "folder1 / subfolder2 /", how do I get the entire full path containing this incomplete path?
Example
partial path: folder1/subfolder2/
result result:
/bob/folder1/subfolder2/yo/ /sandy/folder1/subfolder2/hi/
source share