When i specify user in on the find function on the terminal:
Why do I have to write a /
before I write -user EXAMPLE?
example:
find -user USERNAME
won't do anything whereas
find / -user USERNAME
Work exactly as intended?
P.S: If I use 2 functions one after the other:
find / -user USERNAME -group GROUPNAME
Will it find the files that are belong to both user and the group or files that belong to the user or the group?
I tried searching on the documentation for answers and couldn't find anything, where can I find answers for this type of questions?