Sponsored Content
Full Discussion: Size of compressed file
Top Forums UNIX for Dummies Questions & Answers Size of compressed file Post 302949880 by arunkumar_mca on Friday 17th of July 2015 06:54:52 AM
Old 07-17-2015
Size of compressed file

Hi All,

Is there is any way to find the size of compressed file without doing decompression. The size should give the original uncompressed data size

Thanks
Arun
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

renaming a compressed file to filename without .Z

In a shell script I would like to use a compressed file name, i.e. with suffix of .Z, as a file input $1. After the file in uncompressed, I would like to use the file name without the .Z . How do I do this? Thank you. (8 Replies)
Discussion started by: bruceps
8 Replies

2. Shell Programming and Scripting

Check if file compressed or not

Is there a way I can check if a file is comppressed or not? (Be it tar/gzip or compress). trying to write a generic housekeeping scrit that will delete files over 6 months old and compress any uncompressed files if less than 6 months old. But not sure if there is a clever way to check except for... (4 Replies)
Discussion started by: badg3r
4 Replies

3. UNIX for Advanced & Expert Users

Search first line of compressed file

I want to read a directory full of compressed files and move the file to another directory if it meets certain criteria. I only want to look at the first line of the compressed file and if I find the string, do the move. I am currently using the following: zgrep -R -L... (1 Reply)
Discussion started by: cbreiner
1 Replies

4. UNIX for Advanced & Expert Users

Is it possible to see the content of the compressed file?

How we can view the content of the file,if it compressed (or) Zipped ,without uncompress ? I have one file ,i compressed it,without uncompressing the file.Is it possible to see the content of the file? (2 Replies)
Discussion started by: bobprabhu
2 Replies

5. UNIX for Dummies Questions & Answers

compressed file

I compressed a file by using gzip command gzip <<xx>> filename changed to xx.gz How to view this xx.gz file. Any idea. Thanks in advance. (7 Replies)
Discussion started by: venkatesht
7 Replies

6. Shell Programming and Scripting

Find all tar and compressed file

Hi, I'm trying to find all tar and compressed files (say gzip). I'm having to assume that the tar and gzip files may or may not have the correct extension (.tar .gz .tgz etc). Any help appreciated (2 Replies)
Discussion started by: andyatit
2 Replies

7. Shell Programming and Scripting

Process a compressed file

Hi i have a filename.tar.bz2 and i have to parse it with a tool that doesn't support compressed files. I have to do it for many big files, so i can't decompress and then process. I'd like to do something like: tar -jxvf namefile.tar.bz2 | parsing_tool i mean analyze it directly,... (4 Replies)
Discussion started by: Dedalus
4 Replies

8. Shell Programming and Scripting

compressed file

i have a file 4d7a94d0.bbb.1292 when i do file 4d7a94d0.bbb.1292 the ouput is below 4d7a94d0.bbb.1292: gzip compressed data - deflate method and i run this command gunzip -c 4d7a94d0.bbb.1292 | awk '{gsub("\"","")}/I_ACCOUNT_ID/{print $2}' RS=":|;" FS="," i get... (3 Replies)
Discussion started by: blackzinga80
3 Replies

9. Shell Programming and Scripting

Is there any way to find the compressed size of a file without compressing it in linux

i need to backup a directory from one partition to another and and compress that directory after backing up, so i need to predict the compressed size of the directory with out actually compressing it, to check whether the space is available in the destination partition to accommodate the zipped... (2 Replies)
Discussion started by: Kesavan
2 Replies

10. Shell Programming and Scripting

Adding file to compressed tarfile

Hello all, I would like to add a file to a compressed (gzip) tarfile. Normally it won't be a Problem, if I would do it in several steps. But I do not want to have unnecessary files. So, in words: unzip the tarfile add a new file zip the tarfile What I tried: ... (3 Replies)
Discussion started by: API
3 Replies
LZMA(1) 						      General Commands Manual							   LZMA(1)

NAME
lzma, unlzma, lzcat - LZMA compression and decompression tool SYNOPSIS
lzma [-123456789cdefhkLqtvV] [-S suffix] [filenames ...] unlzma [-cfhkLqtvV] [-S suffix] [filenames ...] lzcat [-fhLqV] [filenames ...] DESCRIPTION
LZMA (Lempel-Ziv-Markov chain-Algorithm) is an improved version of famous LZ77 compression algorithm. It was improved in way of maximum increasing of compression ratio, keeping high decompression speed and low memory requirements for decompressing. lzma command line tool has a similar interface to gzip(1) and bzip2(1) and is intended to make use of LZMA compression easy for the users who are already familiar with gzip and bzip2. In this manual lzma is compared mostly to bzip2 because that is currently one of the most widely used free software to compress tar files made for distribution. Comparing lzma to gzip is not practical because neither lzma nor bzip2 can compete with gzip in compression speed. On the other hand the compression ratio of gzip is worse than of lzma and bzip2. lzma provides notably better compression ratio than bzip2 especially with files having other than plain text content. The other advantage of lzma is fast decompression which is many times quicker than bzip2. The major disadvantage is that achieving the highest compression ratios requires extensive amount of system resources, both CPU time and RAM. Also software to handle LZMA compressed files is not installed by default on most distributions. When compressing or decompressing with lzma, the new file will have the same ownership information, permissions and timestamps as the orig- inal file. However the this information is not stored into the compressed file like gzip does. STREAMED VS. NON-STREAMED LZMA files can be either streamed or non-streamed. Non-streamed files are created only when the size of the file being compressed is known. In practice this means that the source file must be a regular file. In other words, if compressing from the standard input or from a named pipe (fifo) the compressed file will always be streamed. Both streamed and non-streamed files are compressed identically; the only differences are found from the beginnings and ends of LZMA com- pressed files: Non-streamed files contain the uncompressed size of the file in the LZMA file header; streamed files have uncompressed size marked as unknown. To know where to stop decoding, streamed files have a special End Of Stream marker at the end of the LZMA file. The EOS marker makes streamed files five or six bytes bigger than non-streamed. So in practice creating non-streamed files has two advantages: 1) the compressed file is a few bytes smaller and 2) the uncompressed size of the file can be checked without decompressing the file. OPTIONS
Short options can be grouped like -cd. -c --stdout --to-stdout The output is written to the standard output. The original files are kept unchanged. When compressing to the standard output there can be only one input file. This option is implied when input is read from the standard input or the script is invoked as lzcat. -d --decompress --uncompress Force decompression regardless of the invocation name. This the default when called as unlzma or lzcat. -f --force Force compression or decompression even if source file is a symlink, target exists, or target is a terminal. In contrast to gzip and bzip2, if input data is not in LZMA format, --force does not make lzma behave like cat. lzma never prompts if target file should be overwritten; existing files are skipped or, in case of --force, overwritten. -h --help Show a summary of supported options and quit. -k --keep Do not delete the input files after compression or decompression. -L --license Show licensing information of lzma. -q --quiet Suppress all warnings. You can still check the exit status to detect if a warning had been shown. -S --suffix .suf Use .suf instead of the default .lzma. A null suffix forces unlzma to decompress all the given files regardless of the filename suffix. -t --test Check the integrity of the compressed file(s). Without --verbose no output is produced if no errors are found. -v --verbose Show the filename and percentage reduction of each processes file. -V --version Show the version number of lzma. -z --compress Force compression regardless of the invocation name. -1 .. -9 Set the compression ratio. These options have no effect when decompressing. --fast Alias to -1. --best Alias to -9. DIAGNOSTICS
Exit status: 0 - Everything OK. 1 - An error occurred. 2 - Something worth a warning happened but no errors. It can be especially useful with tar(1) patched to support LZMA compression. AUTHORS
The LZMA algorithm and the implementation used in LZMA utils was developed by Igor Pavlov. The original code is available in LZMA SDK which can be found from http://7-zip.org/sdk.html . lzma command line tool was written by Ville Koskinen. http://tukaani.org/lzma/ This manual page is inspired by manual pages of gzip and bzip2. SEE ALSO
gzip(1), bzip2(1) LZMA utils 23 Dec 2005 LZMA(1)
All times are GMT -4. The time now is 04:15 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy