Compression And Encryption Flashcards
0
Q
*unzip
A
Decompresses a file using gunzip, unzip, bunzip. Takes a zip file and yields a decompressed file.
1
Q
*zip
A
Compress a file using gzip, zip, or bzip which yields a compressed .gz, .zip, or .bz file.
2
Q
tar
A
Create or extract archive files using many files
tar -cf archive.tar file1, file2, file3
tar -xf archive.tar
3
Q
gpd
A
Encrypt and decrypt files.
Encrypt:
gpg -c my_text.txt
Decrypt:
gpg my_text.txt