mirror of
https://github.com/facebook/zstd.git
synced 2025-12-07 00:02:39 -05:00
11 lines
265 B
Bash
Executable File
11 lines
265 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
println "+ good path"
|
|
zstdless file.zst
|
|
println "+ pass parameters"
|
|
zstdless -N file.zst # This parameter does not produce line #s when piped, but still serves to test that the flag went to less and not zstd
|
|
println "+ bad path"
|
|
zstdless bad.zst
|