Replies: 1 comment
|
fd's { fd --owner user1; fd --owner user2; fd --owner user3; } | sort -u
If you want a single pass instead, you can filter with fd --exec sh -c 'case "$(stat -c %U "$1")" in user1|user2|user3) echo "$1";; esac' _ {}That's slower because it shells out to |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Hello,
Is there a
fdequivalent for something likefind ./ -user user1 -o -user user2 -o -user user3 ...Thanks!
All reactions