In editors/ides such as eclipse and textmate, there are shortcuts to quickly find a particular file in a project directory.
Is there a similar tool to do full path completion on filenames within a directory (recursively), in bash or other shell?
I have projects with alot of directories, and deep ones at that (sigh, java). Hitting tab in the shell only cycles thru files in the immediate directory, thats not enough =/
Standard UNIX globbing is supported. See
man findfor more information.If you’re using Vim, you can use:
Or
:tabnor any Vim command which accepts a filename.