Age | Commit message (Collapse) | Author | |
---|---|---|---|
2003-09-05 | KNF nit pointed out by theo | Henning Brauer | |
2003-09-05 | dont error out when the input file is a symlink AND output goes to stdout | Henning Brauer | |
inspired by PR3409, ckuethe@ualberta.ca, tho fixed differently matches gnu gzip behaviour ok millert@ tedu@ deraadt@ | |||
2003-09-05 | - add gzcat to SYNOPSIS and DESCRIPTION | Jason McIntyre | |
- add -g flag to zcat in SYNOPSIS - .Nm cat -> .Xr cat 1 from myself and tedu@ | |||
2003-09-05 | we kind of need this new file from canacar | Theo de Raadt | |
2003-09-05 | add a null compressor from canacar@ that lets gzcat work with uncompressed | Ted Unangst | |
files. also introduce SMALLness that removes null and Z compressors to save floppy space. ok deraadt@ | |||
2003-08-16 | Update HISTORY section. Full gzip compat was added in 3.4 and the | Todd C. Miller | |
'g' stands for gratis. | |||
2003-08-06 | typo; | Jason McIntyre | |
2003-08-05 | spacing | Theo de Raadt | |
2003-08-03 | gnu gzip dir is now bye bye | Theo de Raadt | |
2003-08-03 | protos | Theo de Raadt | |
2003-08-02 | A new, BSD licensed znew(1). Some suggestions from krw@ and millert@. | Otto Moerbeek | |
ok millert@ krw@ | |||
2003-08-02 | Manual page for a new, BSD licensed znew(1). | Otto Moerbeek | |
ok jmc@ millert@ krw@ | |||
2003-08-02 | Better description of how uncompressed file name is generated. | Todd C. Miller | |
OK jmc@ | |||
2003-08-01 | cleanup; | Jason McIntyre | |
ok millert@ | |||
2003-07-31 | Wrap a long line | Otto Moerbeek | |
ok deraadt@ | |||
2003-07-31 | Welcome BSD gzexe(1). | Otto Moerbeek | |
ok deraadt@ | |||
2003-07-31 | A new, BSD licensed gzexe(1). | Otto Moerbeek | |
ok millert@ krw@ | |||
2003-07-31 | The manual page for the new, BSD licensed gzexe(1). | Otto Moerbeek | |
ok jmc@ millert@ krw@ | |||
2003-07-29 | Instead of checking for "stdout" in decompress(), just do the check | Todd C. Miller | |
in list_stats(). Looks cleaner and we don't have to rely on any special flags being set. | |||
2003-07-29 | Bye bye GNU zforce(1), welcome BSD zforce(1). | Otto Moerbeek | |
2003-07-29 | BSD licensed manual page for zforce(1). Some suggestions by jmc@. | Otto Moerbeek | |
ok jmc@ | |||
2003-07-29 | Add $OpenBSD$ | Otto Moerbeek | |
ok millert@ | |||
2003-07-29 | A new, BSD licensed version of the zforce(1) script. | Otto Moerbeek | |
ok millert@ deraadt@ | |||
2003-07-29 | Check cat, not pipin when deciding whether or not to make use | Todd C. Miller | |
"stdout" as the filename in -l mode. Fixes "gzip -lN < foo.gz" | |||
2003-07-27 | Return FAILURE for "file would grow" case so the .gz file gets removed. | Todd C. Miller | |
Problem noticed by otto@ | |||
2003-07-25 | o deal with the case where -N was specified but no saved mtime in the gz file | Todd C. Miller | |
o a filename in the header should turn off cat mode if -N o make setmode() be smart about pipin and not set outfile based on /dev/stdin. mickey@ OK | |||
2003-07-20 | document exit values | Todd C. Miller | |
2003-07-18 | Previously, "cat" mode (ie: zcat) was set if no input file was specified, | Todd C. Miller | |
and input was read from the standard input. However, if the -o option is specified, we don't need (or want) cat mode since the user has told us where the output should go. | |||
2003-07-18 | Change "nosave" back into a boolean for improved grokability. | Todd C. Miller | |
It is now initialized to -1 and, if the user did not specify the -n or -N flags, is set equal to "decomp". In other words, unless overridden via -n/-N, it is false when compressing, and true when decompressing (which is what we want). | |||
2003-07-17 | two calls is less than a loop for two; millert@ ok | Michael Shalayeff | |
2003-07-17 | o implement -l, -n and -N (including setting outfile + mtime) | Todd C. Miller | |
o make -v behave like GNU gzip for compress/decompress stats o write a full gzip header w/ mtime and file name o for -t/-l just don't write data instead of writing to /dev/null o exit code is now more consistent with GNU gzip o a crc error on decompress no longer causes unlink(outfile) mickey@ OK | |||
2003-07-15 | Don't compress a file that already has a known compression prefix. | Todd C. Miller | |
This matches GNU gzip behavior. | |||
2003-07-14 | Improved (and cleaner) suffix handling code. Now "gunzip foo.tgz" | Todd C. Miller | |
works as expected. mickey@ OK | |||
2003-07-14 | -t and implied -c due to piped in input is a legal combination of flags | Michael Shalayeff | |
2003-07-13 | Small tweaks from jmc@ | Todd C. Miller | |
o correct filename for stdin o fix "the the" o remove width from dash list (unused) o -compact for FILES list | |||
2003-07-13 | Install zdiff.1; noted by marc@ | Todd C. Miller | |
2003-07-12 | Add zdiff | Todd C. Miller | |
2003-07-11 | No longer need to assume -g when reading from stdin. | Todd C. Miller | |
2003-07-11 | Move magic number checking into main.c and make it work when | Todd C. Miller | |
decompressing from a pipe. Currently assumes that magic numbers are 2 bytes but this is relatively easy to change as needed in the future. Discussed w/ mickey@ | |||
2003-07-10 | add missing includes | David Krause | |
ok deraadt@ tedu@ | |||
2003-07-08 | fix fd closing logicand close in gzopen(); found by wilfried@ and millert@ ok | Michael Shalayeff | |
2003-06-30 | Make usage() take the exit val are an argument and have the -h flag | Todd C. Miller | |
use this to exit(0), not exit(1). Some configure/install sqcripts check for the existence of gzip by running "gzip -h" and checking the subshell's exit value. Noticed by naddy@ | |||
2003-06-29 | Return EINVAL on crc failure for gzip and make the driver program | Todd C. Miller | |
interpret this correctly. Makes "gzip -t" more useful. Discussed with deraadt@ | |||
2003-06-27 | Fix bug in put_int32() on big endian cpus; deraadt@ OK | Todd C. Miller | |
2003-06-27 | Fix -t mode; it needs to set decomp=1 too | Todd C. Miller | |
2003-06-23 | some cleanups | Theo de Raadt | |
2003-06-23 | - further document differences between compress and gzip | Jason McIntyre | |
- document -[1-9] mode for gzip - add relevant RFCs to SEE ALSO ok mickey@ deraadt@ millert@ | |||
2003-06-23 | sort .Xr's in SEE ALSO; | Jason McIntyre | |
2003-06-23 | Fix a typo in my last commit and convert file "-" to /dev/stdin like | Todd C. Miller | |
GNU gzip does. | |||
2003-06-23 | install zmore | Todd C. Miller | |