About 601,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. 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 …

  4. 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 …

  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. linux - can gunzip work on file without a suffix? - Super User

    Jun 14, 2011 · gunzip works with gzip (".gz") files, not zip (".zip") files. For zip files, you need to use the unzip command. Also, the extension doesn't matter in linux, and is simply for human …

  7. 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 …

  8. Critical gzip mistake - how to undo 'gzip -r - Super User

    12 To undo this, use the opposite command: gunzip -r ./ Note that the original gzip command will skip over files that already have a .gz suffix, because there's no point in compressing them …

  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. How to password protect gzip files on the command line?

    Jul 12, 2010 · I want to create some tar.gz (and possibly tar.bz2) files, using the tar command on Ubuntu 10.04. I want to password protect the file. What is the command to do this (I have …