* Move zstdgrep and zstdless tests to cli-tests Co-authored-by: Binh Vo <binhvo@fb.com>
9 lines
116 B
Bash
Executable File
9 lines
116 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
println "+ good path"
|
|
zstdgrep "1234" file file.zst
|
|
println "+ bad path"
|
|
zstdgrep "1234" bad.zst
|