Linux OS を使用している顧客が、ヘルプ デスクに電話して、見つからないファイルを見つけるための支援を求めました。顧客はファイルの正確な名前を知りませんが、ファイル名の一部を提供できます。技術者は次のツールのうちどれを使用する必要がありますか? (2 つ選択してください)。
正解:C,F
To locate a missing file with only a partial name known, the best tools to use in a Linux environment would be grepandfind. grep:This command is used to search the contents of files for a specific pattern. Whilegrepitself might not be the first choice for finding file names, it can be combined with other commands (likelsorfind) to search within file lists or contents. find:This command is used to search for files in a directory hierarchy based on various criteria like name, size, modification date, etc.findcan be used to search for files by partial name by using wildcards in the search pattern. cat(A) is used to concatenate and display the content of files.df(B) displays the amount of disk space used and available on filesystems.ps(D) shows information about active processes.dig(E) is used for querying DNS name servers.top(G) displays Linux tasks and system performance information. None of these tools are directly suited for finding files by partial names.