展示を参照してください。ネットワーク エンジニアは、ディレクトリ TEST からディレクトリ PROD に「config.txt」ファイルをコピーする必要があります。コピーしたファイルの名前も「current.txt」に変更する必要があります。これらのタスクを実行するには、どのコマンドを使用する必要がありますか。
正解:D
To copy a file from one directory to another and rename it in the process, the cp (copy) command in Linux can be used with the appropriate source and destination paths: * Command Breakdown: * cp: The copy command. * ./TEST/config.txt: The source file path. * ./PROD/current.txt: The destination file path with the new name. Thus, the correct command to achieve this task is: cp ./TEST/config.txt ./PROD/current.txt References: * Linux cp Command Manual * Cisco DevNet Associate Certification Guide