4.
|
Note the following command: find ../project -type f -name *.htm | page_list Assuming that page_list is a file, identify the reasons why this command fails. Please select all the correct answers.
|
|
A.
|
You cannot specify two conditions within the same find command
|
|
B.
|
You need quotes around the *.htm pattern
|
|
C.
|
To save output to page_list, use > or >> , not the | character
|
|
D.
|
The pathname cannot include the .. symbol
|