Files
workinf_Blender_Wasm/blender-5.2.0/extern/zstd/programs/zstdless
2026-08-12 04:47:48 -04:00

9 lines
197 B
Bash
Executable File

#!/bin/sh
zstd=${ZSTD:-zstd}
# TODO: Address quirks and bugs tied to old versions of less, provide a mechanism to pass flags directly to zstd
export LESSOPEN="|-${zstd} -cdfq %s"
exec less "$@"