/freebsd/usr.bin/gzip/ |
H A D | Makefile | 5 PROG= gzip 6 MAN= gzip.1 gzexe.1 zdiff.1 zforce.1 zmore.1 znew.1 20 MLINKS+= gzip.1 gunzip.1 \ 21 gzip.1 gzcat.1 \ 22 gzip.1 zcat.1 \ 27 LINKS+= ${BINDIR}/gzip ${BINDIR}/gunzip \ 28 ${BINDIR}/gzip ${BINDIR}/gzcat \ 29 ${BINDIR}/gzip ${BINDIR}/zcat \
|
H A D | gzexe | 43 /usr/bin/gzip -dc > "$tmp/$prog" 2> /dev/null; then 71 if ! tail +$lines "$tmp" | gzip -vdc > "$1"; then 92 sh | mktemp | rm | echo | tail | gzip | chmod) 129 if header "$1" > "$tmp" && gzip -vc "$1" >> "$tmp"; then
|
H A D | zmore | 53 gzip -cdfq 2>&1 | $pager $flags 59 gzip -cdfq "$1" 2>&1 | $pager $flags
|
H A D | znew | 32 gzip -qt < "$1" 62 if uncompress -f -c < "$filez" | gzip -f -c $gzipflags > "$tmp"; then
|
/freebsd/contrib/netbsd-tests/usr.bin/gzip/ |
H A D | t_gzip.sh | 35 echo -n "aaaa" | gzip > tmp.gz 36 echo -n "bbbb" | gzip >> tmp.gz 38 atf_check -o inline:"aaaabbbb" gzip -d tmp.gz -c 66 atf_check -s ne:0 -e ignore gzip -d truncated.gz 83 atf_check -s ne:0 -e ignore gzip -d crcerror.gz 100 atf_check gzip -d good.gz
|
/freebsd/usr.sbin/crunch/examples/ |
H A D | filesystem.conf | 22 progs cpio gzip 23 ln gzip gunzip 24 ln gzip gzcat 25 ln gzip zcat
|
H A D | fixit.conf | 38 progs cpio gzip 39 ln gzip gunzip 40 ln gzip gzcat
|
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/history/ |
H A D | history_002_pos.ksh | 87 compression gzip compression gzip-$((RANDOM%9 + 1)) 115 compression gzip compression gzip-$((RANDOM%9 + 1)) 144 compression gzip compression gzip-$((RANDOM%9 + 1))
|
/freebsd/crypto/openssh/contrib/cygwin/ |
H A D | Makefile | 70 gzip-man-pages: 72 gzip $(DESTDIR)$(mandir)/man1/*.1 73 gzip $(DESTDIR)$(mandir)/man5/*.5 74 gzip $(DESTDIR)$(mandir)/man8/*.8 77 …es remove-empty-dir install-inetd-config install-doc install-scripts install-copy-id gzip-man-pages
|
/freebsd/contrib/mandoc/ |
H A D | read.c | 62 int gzip; /* current input file is gzipped */ member 460 if (curp->gzip == 0 && S_ISREG(st.st_mode)) { in read_whole_file() 472 if (curp->gzip) { in read_whole_file() 512 ssz = curp->gzip ? in read_whole_file() 521 if (curp->gzip) in read_whole_file() 524 curp->gzip && gzerrnum != Z_ERRNO ? in read_whole_file() 531 if (curp->gzip && (gzerrnum = gzclose(gz)) != Z_OK) in read_whole_file() 635 curp->gzip = (cp != NULL && ! strcmp(cp + 1, "gz")); in mparse_open() 647 if ( ! curp->gzip) { in mparse_open() 654 curp->gzip = 1; in mparse_open() [all …]
|
/freebsd/sys/contrib/zlib/doc/ |
H A D | rfc1952.txt | 83 7. Appendix: Jean-Loup Gailly's gzip utility .................. 11 107 widely used gzip utility, in that conforming decompressors 108 will be able to read data produced by the existing gzip 128 to compress data into gzip format and/or decompress data from gzip 161 There have been no technical changes to the gzip format since 233 A gzip file consists of a series of "members" (compressed data 292 (0x8b, \213), to identify the file as being in gzip format. 298 gzip and which is documented elsewhere. 325 If FHCRC is set, a CRC16 for the gzip header is present, 328 bytes of the gzip header up to and not including the CRC16. [all …]
|
/freebsd/usr.bin/gzip/tests/ |
H A D | zdiff_test.sh | 51 atf_test_case gzip 54 prepare_files gzip tgz 121 atf_add_test_case gzip
|
/freebsd/usr.bin/patch/tests/ |
H A D | PR74127-good.diff | 3 - set Log(compressProg) gzip 4 + set Log(compressProg) /usr/local/bin/gzip
|
H A D | PR74127-repro.diff | 3 - set Log(compressProg) /usr/local/bin/gzip 4 + set Log(compressProg) /usr/bin/gzip
|
H A D | PR74127-cline.diff | 3 - set Log(compressProg) /usr/local/bin/gzip 4 + set Log(compressProg) /usr/bin/gzip
|
/freebsd/sys/contrib/zlib/ |
H A D | FAQ | 58 corresponding source to us at zlib@gzip.org . Do not send multi-megabyte 129 18. Why does gzip give an error on a file I make with compress/deflate? 132 is different and incompatible with the gzip format. The gz* functions in 133 zlib on the other hand use the gzip format. Both the zlib and gzip formats 139 The gzip format was designed to retain the directory information about a 143 faster integrity check than gzip. 145 20. Well that's nice, but how do I make a gzip file in memory? 147 You can request that deflate write the gzip format instead of the zlib 149 gzip format using inflateInit2(). Read zlib.h for more details. 159 Of course, you should only operate on any given zlib or gzip stream from a [all …]
|
H A D | README | 7 rfc1952 (gzip format). 10 (volunteer to write man pages welcome, contact zlib@gzip.org). A usage example 22 Questions about zlib should be sent to <zlib@gzip.org>, or to Gilles Vollant 105 jloup@gzip.org madler@alumni.caltech.edu
|
/freebsd/contrib/libarchive/libarchive/ |
H A D | archive_write_add_filter_lrzip.c | 45 enum { lzma = 0, bzip2, gzip, lzo, none, zpaq } compression; 104 else if (strcmp(value, "gzip") == 0) in archive_write_lrzip_options() 105 data->compression = gzip; in archive_write_lrzip_options() 145 case gzip: in archive_write_lrzip_open() 47 enum { lzma = 0, bzip2, gzip, lzo, none, zpaq } compression; global() enumerator
|
/freebsd/sbin/dumpon/ |
H A D | dumpon.c | 467 bool gzip, list, netdump, zstd, insert, rflag; in main() local 473 gzip = list = netdump = zstd = insert = rflag = false; in main() 536 gzip = true; in main() 542 if (gzip && zstd) in main() 608 if (!netdump && !gzip && !zstd && !rflag) in main() 622 else if (gzip) in main() 672 if (error == EINVAL && (gzip || zstd)) { in main()
|
/freebsd/tools/test/stress2/misc/ |
H A D | fsck10.sh | 127 gzip < $diskimage > $backup 139 gzip < $backup > /tmp/fsck_ffs.core.diskimage.$tstamp 140 gzip < fsck_ffs.core > /tmp/fsck_ffs.core.$tstamp
|
H A D | fsck11.sh | 134 gzip < $diskimage > $backup 148 gzip < $backup > /tmp/fsck_ffs.core.diskimage.$tstamp 149 gzip < fsck_ffs.core > /tmp/fsck_ffs.core.$tstamp
|
/freebsd/contrib/file/magic/Magdir/ |
H A D | compress | 5 # compress, gzip, pack, compact, huf, squeeze, crunch, freeze, yabba, etc. 19 # gzip (GNU zip, not to be confused with Info-ZIP or PKWARE zip archiver) 36 # to display gzip compressed (strength=100=2*50) before other (strength=50)? 61 >>10 default x gzip compressed data 62 !:mime application/gzip 63 >>>0 use gzip-info 84 >3 byte&0x18 >0 gzip compressed data 85 !:mime application/gzip 95 >>0 use gzip-info 98 # display information of gzip compressed files [all …]
|
/freebsd/contrib/openbsm/ |
H A D | Makefile.in | 211 DIST_TARGETS = dist-gzip 578 dist-gzip: distdir 579 tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz 605 shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz 623 GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\ 633 GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\ 812 dist-all dist-bzip2 dist-gzip dist-lzip dist-shar dist-tarZ \
|
/freebsd/tests/sys/cddl/zfs/tests/history/ |
H A D | history_002_pos.ksh | 98 compression gzip compression gzip-$((RANDOM%9 + 1)) \
|
/freebsd/tools/tools/vt/fontcvt/ |
H A D | terminus.sh | 12 gzip -9nf terminus-u${R}.vfnt
|