Find a file in sub-directories.. o/p just the path

Hello All,
I am somehow stumped with this ting.
'Find' will sure show me.. but I want only thepath of all the occurences of the file in any of the sub-dirs..

Any help will be sincerely appreciated.
thanx!

I was unnecesarily bugging you all..

find /path -name <filename>

did the trick!

anyways.. thanx to all..

sed 's [^/]*$  ' <(find . -type f)

Edit: it seams I did not understand the question :slight_smile:

I was unnecesarily bugging you all..

find /path -name <filename>

did the trick!

anyways.. thanx to all..