mirror of
https://github.com/Gator96100/ProxSpace.git
synced 2024-12-04 11:20:35 -08:00
9 lines
197 B
Bash
9 lines
197 B
Bash
#!/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 "$@"
|