Shell Is there an interactive shell (or plugin for one) that does this completion?

cracauer@

Developer
When I type a command in bash and add a filename it shows possible completions of the filename in alphabetical order when I hit <tab>.

I would like to have additional keystrokes that show completions ordered by file modification time, size etc.

Is there a shell that does that? Or maybe a plugin for bash?
 
Actually it looks like there are some online example of how to do this using a combination of bash function and the "complete" intrinsic. see
google search on "bash tab completion sort order"
 
Back
Top