2430592ce1
similar to the zmore script that comes with gzip (and in fact, in most Linux distros, zless is a symlink to that very same zmore script) but has the advantage that you get the correct file name on the less status line, and can use :n and :p to navigate back and forth between multiple files. MFC after: 1 week
8 lines
94 B
Bash
8 lines
94 B
Bash
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
export LESSOPEN="|/usr/bin/lesspipe.sh %s"
|
|
exec /usr/bin/less "$@"
|