coreutils icon indicating copy to clipboard operation
coreutils copied to clipboard

ls: --hyperlink -R omits parent dir when displaying child dir

Open cakebaker opened this issue 1 year ago • 0 comments

While reviewing https://github.com/uutils/coreutils/pull/6144 I discovered the following issue:

$ mkdir -p dir/subdir
$ cargo run ls --hyperlink -R dir
dir:
subdir

subdir:   <- parent dir is not shown
$ ls --hyperlink -R dir
dir:
subdir

dir/subdir:

Without --hyperlink, the correct output is shown.

cakebaker avatar Jun 24 '24 08:06 cakebaker