About 544,000 results
Open links in new tab
  1. How do you gunzip a file and keep the .gz file? - Super User

    The default behavior of gunzip is to delete the .gz file after it decompresses. How do I prevent it from deleting the file?? If this functionality is not included then is there an alternative pro...

  2. How do I gunzip to a different destination directory? - Super User

    Oct 29, 2014 · Ask gunzip to output to standard output and redirect to a file in that directory: gunzip -c file.gz > /THERE/file zcat is a shortcut for gunzip -c. If you want to gunzip multiple …

  3. How to gzip multiple files into one gz file? - Super User

    Mar 29, 2011 · You'll want to use tar, like so: tar -czvf file.tar.gz cvd*.txt tar puts the files together, while gzip then performs the compression. Quoth the gzip manpage: If you wish to create a …

  4. gzip - How do I gunzip a directory? - Super User

    I have a gzipped directory called "new" which contains other directories and files, that I compressed in the following way gzip -cvr --no-name /path-to-directory/new > new.gz I have …

  5. Unexpected end of file. Gzip compressed file - Super User

    gzip: the_name_of_the_file.gz: unexpected end of file The same problem happens when I try to extract the file using the GUI tool in Ubuntu or MacOSX, Any ideas?

  6. "gzip: stdin has more than one entry--rest ignored" and "gzip: …

    Aug 5, 2017 · $ gzip -d tmp.gz gzip: tmp.gz has more than one entry -- unchanged $ gzip -d < tmp.gz > tmp gzip: stdin has more than one entry--rest ignored (And I get the same errors, of …

  7. linux - Unzip/gunzip works fine from terminal but gives error when ...

    Jun 3, 2019 · 1 I am trying to unzip/gunzip a file from the terminal and it works absolutely fine. When I put the same in a sh file and call it from terminal it works fine too!

  8. windows - How to unzip a file using the cmd? - Super User

    Apr 16, 2018 · I want to make a BAT file that will ZIP or UNZIP a file. For zipping a file, I have found this question: Can you zip a file from the command prompt using ONLY Windows' built …

  9. gunzip - How do I decompress .bgz files? - Super User

    Sep 18, 2018 · Is there any software that will decompress a file named nnnnn.tsv.bgz on a PC running Windows 10? The usual R commands will not do it.

  10. What can be used to 'gzip' in Windows? - Super User

    But those that are unwilling to install anything and wish to use gzip or gunzip to compress or decompress single files can create a System.IO.Compression.GZipStream object in …