$ fish --version
fish, version 3.1.2-1083-ga30630a1d
bash
$ mkdir foo
$ touch bar foo/bar
$ echo **/bar
bar foo/bar
fish
$ mkdir foo
$ touch bar foo/bar
$ echo **/bar
foo/bar
Is this intentional or an oversight? The documentation says:
** matches any files and directories in the current directory and all of its subdirectories.
bash
fish
Is this intentional or an oversight? The documentation says: