To make a system backup, the simplest and fastest way is to use the tar command. Select the correct alternative below that shows the three tar parameters that create, list and expand a tar file respectively.
A.
--create --list --extract
B.
--compose --list --expand
C.
-c -t -e
D.
-c -l -x
題解
「tar」指令可以用來封裝(壓縮)檔案,或是解除封裝(壓縮)。「--create」或是「-c」參數可以建立封裝。「-x」、「--extract」或是「--get」參數可以取出封裝中的檔案。「-t」或是「--list」參數可以列出封裝的內容。
所以答案是選項A。