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