Lines Matching full:gz
9 # files without the .gz suffix.
10 echo -n "foo " | gzip > f1.gz
11 echo "bar" | gzip > f2.gz
12 testing "with input files" "gunzip f1.gz f2.gz &&
13 ! test -f f1.gz && ! test -f f2.gz &&
16 rm -f f1 f2 f1.gz f2.gz
19 echo "hello world" | gzip > f.gz
20 testing "no files (stdin to stdout)" "cat f.gz | gunzip > f &&
21 test -f f.gz && cat f" "hello world\n" "" ""
22 rm -f f f.gz
25 echo -n "foo " | gzip > f1.gz
26 echo "bar" | gzip > f2.gz
27 testing "with input files and -c" "gunzip -c f1.gz f2.gz > out &&
28 test -f f1.gz && test -f f2.gz &&
31 rm -f f1.gz f2.gz out
36 echo "hello world" | gzip > f1.gz
37 testing "-k" "gunzip -k f1.gz && cat f1 && zcat f1.gz" \
39 rm -f f1 f1.gz
43 echo "hello world" | gzip > f1.gz
44 chmod 0411 f1.gz
45 touch -a -t 197801020304 f1.gz
46 touch -m -t 198704030201 f1.gz
48 "gunzip -k f1.gz && stat -c '%a %X %Y' f1 && stat -c '%a %Y' f1.gz" \
50 rm -f f1 f1.gz