adspace


How zip the file in unix?

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


Please Help Members By Posting Answers For Below Questions

How can you edit a large file without opening it in unix?

988