Lines Matching refs:q
57 command: unzip -q $FILES/example.zip d1/d2/a.txt && cat d1/d2/a.txt
64 command: unzip -q $FILES/example.zip
77 command: unzip -q -o $FILES/example.zip d1/d2/a.txt && cat d1/d2/a.txt
85 command: unzip -q -n $FILES/example.zip d1/d2/a.txt && cat d1/d2/a.txt
93 command: unzip -q -d will-be-created $FILES/example.zip d1/d2/a.txt
101 command: unzip -q -d oh-no/will-not-be-created $FILES/example.zip d1/d2/a.txt 2> stderr ; echo $? >…
105 after: grep -q "oh-no/will-not-be-created" stderr
106 after: grep -q "No such file or directory" stderr
113 command: unzip -q -d dir $FILES/example.zip d1/d2/a.txt && cat dir/d1/d2/a.txt
128 command: unzip -q $FILES/example.zip -x d1/d2/a.txt d1/d2/b.txt d1/d2/empty.txt d1/d2/x.txt && cat …
139 command: unzip -q $FILES/example.zip d1/d2/a.txt d1/d2/b.txt -x d1/d2/a.txt && cat d1/d2/b.txt