adspace
Answer Posted / Monark Chawla
To zip files in Unix, you can use the gzip command which creates .gz files. If you want to create a .zip file, you'll need to install 'gzip' and 'unzip' first if they aren't already installed. You can then compress a single file with 'gzip <filename>' and decompress it with 'gunzip <filename>.gz'. To zip multiple files in one go, create an archive with 'tar -czf archive.tar.gz <files>'.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers