Which of the following commands prints all files and directories within the /tmp directory or its subdirectories which are also owned by the user root? (Choose TWO correct answers.)



A.

find /tmp -uid root -print

B.

find -path /tmp -uid root

C.

find /tmp -user root -print

D.

find /tmp -user root

E.

find -path /tmp -user root -print

題解

「find」指令可以搜索檔案,在這題目中所有選項都使用了「find」指令。

選項A,「-uid」參數應輸入使用者的ID,而不是使用者的名稱,root使用者的UID為0。

選項B,「-uid」參數應輸入使用者的ID,而不是使用者的名稱,root使用者的UID為0。

選項C,正確答案。

選項D,正確答案。沒有指定行為(actions)的話,「-print」參數是預設行為。

選項E,「-path」參數後面放的是檔案名稱的正規表示式,不是路徑。