Réponse

tar -xzf ~/files.tgz

Colonne
Explication

tar command also unzips tar. tgz files
x - extract
z - this is a compressed zip
f - indicates which file will be unzipped
~/files.tgz - name of the file to be unzipped

Question

command - unzip the folder ~/files.tgz

Thématique