You execute the following command:
find /home/ -name ?.jpg? -type f -user john
What is the expected output of this command?
A.
A list of all regular files and directories with the pattern jpg in file names and owned by the user
john, under the /home directory
B.
A list of all the regular files with the extension .jpg and owned by the user john, under the /home
directory and subdirectories
C.
A list of all the regular files with the extension .jpg and owned by the user john, under the /home
directory, not in subdirectories
D.
A list of all the regular files with the extension .jpg and owned by the users john and root, under
the /home directory and subdirectories
Explanation: