I need to find an image, say ABC.jpg, that I know will have been programmatically placed into a directory named ABC_MPSC. I've tried:
cd /
find . -name "ABC_MPSC/ABC.jpg"
But that doesn't return anything (I actually know where the particular one I'm searching for is, so I know it exists). Is there a find command that could allow me not have to search manually?
locate
, which should be significantly faster, but only works if the file already existed whenupdatedb
was last run. – Simon Richter Mar 29 '19 at 20:01