You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$ ls
a b c d e
$ ~/projects/coreutils/target/debug/coreutils ls
a b c d e
$ ls --ignore '[a]'
b c d e
$ ~/projects/coreutils/target/debug/coreutils ls --ignore '[a]'
b c d e
$ ls --ignore '[!a]'
a
$ ls --ignore '[^a]'
a
$ ~/projects/coreutils/target/debug/coreutils ls --ignore '[!a]'
a
$ ~/projects/coreutils/target/debug/coreutils ls --ignore '[^a]'
b c d e
$
I'll work on this!
The text was updated successfully, but these errors were encountered:
Discovered while working on #3628
I'll work on this!
The text was updated successfully, but these errors were encountered: