Lines Matching full:gz
9 # files with the .gz suffix.
13 test -f f1.gz && test -f f2.gz &&
15 zcat f1.gz f2.gz" "foo bar\n" "" ""
16 rm -f f1 f2 f1.gz f2.gz
19 testing "no files (stdin to stdout)" "echo hello world | gzip > f.gz &&
20 test -f f.gz && zcat f.gz" "hello world\n" "" ""
21 rm -f f.gz
26 testing "with input files and -c" "gzip -c f1 f2 > out.gz &&
27 ! test -f f1.gz && ! test -f f2.gz &&
29 zcat out.gz" "foo bar\n" "" ""
30 rm -f f1 f2 out.gz
33 echo "hello world" | gzip > f.gz
34 testing "-d (act as gunzip)" "gzip -d f.gz &&
35 test -f f && ! test -f f.gz && cat f" "hello world\n" "" ""
36 rm -f f.gz f
38 echo "hello world" | gzip > f.gz
39 testing "-dc (act as zcat)" "gzip -dc f.gz &&
40 ! test -f f && test -f f.gz" "hello world\n" "" ""
41 rm -f f.gz f
45 echo "precious data" > f1.gz
47 "gzip f1 2>/dev/null || echo refused && cat f1 f1.gz" \
50 "gzip -f f1 && echo allowed && ! test -f f1 && zcat f1.gz" \
52 rm -f f1 f1.gz
56 testing "-k" "gzip -k f1 && cat f1 && zcat f1.gz" \
58 rm -f f1 f1.gz
62 gzip -c1 x > x1.gz
63 gzip -c9 x > x9.gz
65 "test $(stat -c '%s' x1.gz) -gt $(stat -c '%s' x9.gz) && echo okay" \
67 rm -f x x1.gz x9.gz
76 "gzip -k f1 && TZ=UTC stat -c '%a %Y' f1 && stat -c '%a %X %Y' f1.gz" \
78 rm -f f1 f1.gz