ab0d495421
Resolves: rhbz#1986357
10 lines
135 B
Bash
Executable File
10 lines
135 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "Hello World!" > ./in
|
|
gzip -f -k ./in
|
|
zegrep "ello" ./in.gz >/dev/null
|
|
result=$?
|
|
rm -f *.gz ./out ./in
|
|
exit $result
|
|
|