Home | History | Annotate | Line # | Download | only in cltools
      1 #!/bin/sh
      2 
      3 set -e
      4 
      5 println "+ good path"
      6 zstdless file.zst
      7 println "+ pass parameters"
      8 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
      9 println "+ bad path"
     10 zstdless bad.zst >&2
     11