Archiving and (de)compressing

tar -cf archive_name.tar file1 file2 ...
vytvori archiv archive_name.tar obsahujuci subory file, file2,...
tar -xvf archive_name.tar
rozbali archiv archive_name.tar
gzip file
kompresuje subor file
gzip -d file.gz
dekompresuje stlaceny subor file.gz

Return to the Linux page.