About 50 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. 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 copied this >

  3. 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 files iterate over all …

  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 PowerShell and …

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

  6. linux - How to uncompress file - Super User

    May 15, 2018 · Rename the file to sample.file.gz and rerun gunzip on the new file. unknown suffix -- ignored Is telling you that it does not understand the .file suffix so it is ignoring the file. As the man …

  7. Untar, ungz, gz, tar - how do you remember all the useful options?

    All you need is tar x (extract from stdin), tar c (tar to stdout), gzip -c (gzip from stdin to stdout; -1 to -9 for compression levels; same goes for bzip2) and gunzip -c (gunzip from stdin to stdout) - everything …

  8. linux - How to use gzip or gunzip in a pipeline with curl (For binary ...

    Jul 27, 2017 · How to use gzip or gunzip in a pipeline with curl (For binary gz files) Ask Question Asked 8 years, 5 months ago Modified 8 years, 5 months ago

  9. command line - Is it possible to gunzip multiple files to a specific ...

    Is it possible to gunzip multiple files to a specific directory without deleting the original gz files? Ask Question Asked 15 years, 3 months ago Modified 10 years, 9 months ago

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