mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-12 09:17:53 +00:00
9 lines
197 B
Text
9 lines
197 B
Text
|
#!/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 "$@"
|